:root {
  --brown-950: #1f140d;
  --brown-900: #2c1b12;
  --brown-800: #3d2618;
  --brown-700: #5a3822;
  --brown-600: #6e4529;
  --brown-500: #8a5a36;
  --brown-300: #c4a484;
  --brown-100: #f3ebe3;
  --white: #ffffff;
  --ink: #2c1b12;
  --ink-soft: rgba(44, 27, 18, 0.72);
  --line: rgba(44, 27, 18, 0.14);
  --shadow-soft: 0 18px 40px rgba(31, 20, 13, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 4px;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(138, 90, 54, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--brown-100) 100%);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--brown-800);
  color: var(--white);
}

.btn--solid:hover {
  background: var(--brown-700);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--light {
  background: var(--white);
  color: var(--brown-900);
}

.btn--light:hover {
  background: var(--brown-100);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: var(--white);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(31, 20, 13, 0.28) 0%, rgba(31, 20, 13, 0.55) 42%, rgba(31, 20, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(31, 20, 13, 0.45), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
}

.hero__brand {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
}

.section__title--light {
  color: var(--white);
}

.section__text {
  margin: 0.7rem 0 0;
  max-width: 34rem;
  color: var(--ink-soft);
}

.section__text--light {
  color: rgba(255, 255, 255, 0.82);
}

.venue {
  background: var(--white);
}

.venue__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.venue__list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.venue__list li:first-child {
  border-top: 0;
}

.venue__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-500);
}

.venue__value {
  font-size: 1.15rem;
}

.venue__link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.venue__link:hover {
  border-bottom-color: var(--brown-500);
}

.cta-band {
  background:
    linear-gradient(135deg, var(--brown-900), var(--brown-700) 55%, var(--brown-600));
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer {
  background: var(--brown-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.4rem 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.92rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--white);
}

.site-footer a {
  text-decoration: none;
}

/* Menu page */
.menu-top {
  background:
    linear-gradient(180deg, var(--brown-900), var(--brown-800));
  color: var(--white);
  padding: 1.2rem 0 2.4rem;
}

.menu-top__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.menu-top__back {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.menu-top__back:hover {
  color: var(--white);
}

.menu-top__brand {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.menu-top__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
}

.menu-top__lead {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
}

.menu-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.menu-nav__track {
  display: flex;
  gap: 0.35rem 1.1rem;
  overflow-x: auto;
  padding: 0.85rem 0;
  scrollbar-width: none;
}

.menu-nav__track::-webkit-scrollbar {
  display: none;
}

.menu-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.menu-nav a:hover {
  color: var(--brown-800);
  border-bottom-color: var(--brown-500);
}

.menu-sheet {
  padding-bottom: 3rem;
}

.menu-block {
  padding: 2.8rem 0 0.5rem;
}

.menu-block:nth-child(even) {
  background: rgba(255, 255, 255, 0.55);
}

.menu-block__head {
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.menu-block__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
}

.menu-block__head p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.menu-list {
  display: grid;
  gap: 1.1rem;
}

.dish {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.dish--photo {
  gap: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.dish--photo.is-in {
  opacity: 1;
  transform: none;
}

.dish__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brown-100);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

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

.dish__badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-500);
}

.dish__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
}

.dish__desc {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 40rem;
}

.dish--text .dish__name {
  font-size: 1.35rem;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal--delay-1 {
  transition-delay: 0.1s;
}

.js .reveal--delay-2 {
  transition-delay: 0.2s;
}

.js .reveal--delay-3 {
  transition-delay: 0.32s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (min-width: 720px) {
  .venue__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 0;
  }

  .venue__list li {
    border-top: 0;
    padding-top: 0;
    padding-right: 1rem;
    border-right: 1px solid var(--line);
  }

  .venue__list li:last-child {
    border-right: 0;
  }

  .dish--photo {
    grid-template-columns: minmax(220px, 38%) 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.3rem 0;
  }

  .menu-list {
    gap: 0.4rem;
  }

  .dish--photo:nth-of-type(even) {
    grid-template-columns: 1fr minmax(220px, 38%);
  }

  .dish--photo:nth-of-type(even) .dish__figure {
    order: 2;
  }

  .dish--photo:nth-of-type(even) .dish__body {
    order: 1;
  }
}

@media (min-width: 960px) {
  .hero__content {
    padding-bottom: 4.5rem;
  }

  .dish--photo .dish__figure {
    aspect-ratio: 5 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media img,
  .js .reveal,
  .dish--photo {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
