﻿:root {
  --bg: #0c0b0a;
  --ivory: #f2ede5;
  --bordeaux: #4f0f1d;
  --copper: #b56e3b;
  --olive: #2d392f;
  --deep-red: #781720;
  --muted: #c8bfb2;
  --line: rgba(242, 237, 229, 0.15);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 10%, #221313 0%, var(--bg) 38%), var(--bg);
  color: var(--ivory);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.wrapper {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

#hero .wrapper {
  width: min(1160px, calc(100% - 2rem));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  z-index: 99;
}

.section {
  padding: 7rem 0;
}

.kicker {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 11, 10, 0.65);
  backdrop-filter: blur(8px);
  overflow: visible;
  isolation: isolate;
  z-index: 50;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.5rem;
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--ivory);
  transition: width 0.35s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  padding: 0.35rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 0;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.1);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(12, 11, 10, 0.92), rgba(12, 11, 10, 0.45) 45%, rgba(12, 11, 10, 0.2)),
    linear-gradient(115deg, rgba(79, 15, 29, 0.45), rgba(45, 57, 47, 0.24));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 6.2rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 11vw, 9.2rem);
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 10ch;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 54ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-around;
  background: linear-gradient(120deg, rgba(12, 11, 10, 0.72), rgba(79, 15, 29, 0.3));
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}

.hero-marquee span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  border: 1px solid transparent;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--bordeaux), var(--deep-red));
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(120deg, var(--deep-red), var(--bordeaux));
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(12, 11, 10, 0.28);
}

.btn-ghost:hover {
  background: rgba(242, 237, 229, 0.08);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.concept-right p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.concept-banner {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.menu {
  background: linear-gradient(180deg, rgba(45, 57, 47, 0.24), rgba(12, 11, 10, 0));
}

.section-head {
  margin-bottom: 2rem;
}

.menu-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.tab-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  padding: 0.55rem 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
}

.tab-btn.active {
  border-color: rgba(181, 110, 59, 0.5);
  background: rgba(181, 110, 59, 0.12);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(242, 237, 229, 0.04), rgba(12, 11, 10, 0.4));
  padding: 0.65rem;
  display: grid;
  gap: 0.9rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.menu-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.menu-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-card span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--copper);
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 110, 59, 0.5);
}

.chef {
  background: linear-gradient(180deg, rgba(79, 15, 29, 0.26), rgba(12, 11, 10, 0));
}

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.chef-image {
  border: 1px solid var(--line);
  padding: 0.6rem;
}

.chef-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.chef-content p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  max-width: 52ch;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.exp-card {
  border: 1px solid var(--line);
  padding: 1.4rem;
  min-height: 180px;
  display: grid;
  align-content: space-between;
  background: linear-gradient(130deg, rgba(45, 57, 47, 0.22), rgba(12, 11, 10, 0.08));
}

.exp-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.exp-card p {
  color: var(--muted);
}

.gallery {
  padding-inline: 0;
}

.gallery-swiper {
  width: min(1360px, calc(100% - 2rem));
  margin-inline: auto;
  border: 1px solid var(--line);
}

.gallery-swiper .swiper-slide {
  height: 66vh;
}

.gallery-swiper img {
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: var(--ivory);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: linear-gradient(130deg, rgba(79, 15, 29, 0.17), rgba(45, 57, 47, 0.17));
}

.reserve-form {
  display: grid;
  gap: 0.85rem;
}

.reserve-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reserve-form input,
.reserve-form select {
  border: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.45);
  color: var(--ivory);
  padding: 0.75rem;
  font-size: 0.93rem;
  font-family: "Manrope", sans-serif;
}

.reserve-form input:focus,
.reserve-form select:focus {
  outline: none;
  border-color: rgba(181, 110, 59, 0.52);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article {
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: linear-gradient(140deg, rgba(242, 237, 229, 0.03), rgba(12, 11, 10, 0));
}

.proof-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.proof-grid p {
  color: var(--muted);
}

.contact {
  background: linear-gradient(180deg, rgba(45, 57, 47, 0.18), rgba(12, 11, 10, 0));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.contact h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.contact p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.6rem;
  background: #090808;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.split-word,
.reveal-line {
  display: inline-block;
  overflow: hidden;
}

.split-word {
  white-space: nowrap;
}

.split-char {
  display: inline-block;
  transform: translateY(110%);
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 4.6rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-height: calc(100svh - 6rem);
    overflow-y: auto;
    flex-direction: column;
    background: rgba(12, 11, 10, 0.95);
    border: 1px solid var(--line);
    padding: 0.95rem;
    z-index: 70;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .main-nav.open,
  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: inline-block;
    cursor: pointer;
  }

  .site-header.menu-open .menu-toggle {
    background: rgba(181, 110, 59, 0.12);
    border-color: rgba(181, 110, 59, 0.48);
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .concept-grid,
  .chef-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .menu-cards,
  .experience-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-marquee {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 1.2rem;
    padding-inline: 1rem;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 5rem 0;
  }

  .menu-cards,
  .experience-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 6.8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(to top, rgba(12, 11, 10, 0.84), rgba(12, 11, 10, 0.36) 44%, rgba(12, 11, 10, 0.16)),
      linear-gradient(115deg, rgba(79, 15, 29, 0.35), rgba(45, 57, 47, 0.2));
  }

  .hero-content {
    padding-bottom: 6.1rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12.5vw, 4.2rem);
    line-height: 0.88;
    max-width: 11ch;
  }

  .hero-sub {
    max-width: 30ch;
    font-size: 0.97rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-height: 44px;
    padding-inline: 0.8rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.3rem, 11.5vw, 3.4rem);
    max-width: 11ch;
  }
}
