:root {
  --ink: #1d1d26;
  --ink-deep: #14141b;
  --paper: #f5f1ea;
  --paper-2: #eae2d6;
  --taupe: #bfb5ab;
  --taupe-2: #b5a99d;
  --taupe-dark: #736e69;
  --accent: #b4552d;
  --accent-deep: #93401d;
  --line: rgba(29, 29, 38, 0.18);
  --line-light: rgba(191, 181, 171, 0.3);
  --display: "Londrina Solid", Georgia, serif;
  --body: "Asap", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(1.25rem, 4.5vw, 4.5rem);
  --max: 1500px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.is-locked {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0 0 1.15em;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe-2);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 2px dashed var(--taupe);
  border-radius: 4px;
  background: transparent;
  color: var(--taupe);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn:hover {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.btn--dark {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
  width: 100%;
}

.btn--dark:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  transition: background 0.4s, box-shadow 0.4s;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-light);
  opacity: 0.6;
  transition: opacity 0.4s;
}

.topbar.is-scrolled {
  background: var(--ink-deep);
  box-shadow: 0 14px 40px rgba(12, 12, 17, 0.35);
}

.topbar.is-scrolled::after {
  opacity: 0;
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 1 auto;
}

.brand img {
  width: 205px;
  height: auto;
  transition: width 0.4s;
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.45));
}

.topbar.is-scrolled .brand img {
  width: 158px;
}

.nav {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.35s ease;
}

.nav a:hover::after,
.nav a.is-current::after {
  right: 0;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px dashed var(--taupe);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--taupe);
  transition: transform 0.3s, opacity 0.3s;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad) 2.5rem;
  background: var(--ink-deep);
  color: var(--paper);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-light);
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.9rem, 8vw, 3rem);
  text-decoration: none;
}

.mobile-nav small {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.mobile-nav__foot {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--taupe-2);
}

.mobile-nav__foot a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px dashed var(--taupe);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.hero__slides,
.hero__slide,
.hero__slide img {
  position: absolute;
  inset: 0;
}

.hero__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

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

.hero__slide.is-active img {
  animation: heroPan 8s ease-out forwards;
}

@keyframes heroPan {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(78deg, rgba(20, 20, 27, 0.92) 0%, rgba(20, 20, 27, 0.55) 46%, rgba(20, 20, 27, 0.15) 75%),
    linear-gradient(to top, rgba(20, 20, 27, 0.9) 0%, rgba(20, 20, 27, 0) 45%);
}

.hero__side {
  position: absolute;
  right: calc(var(--pad) - 0.4rem);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 9rem var(--pad) 3rem;
}

.hero h1 {
  margin: 1.1rem 0 1.4rem;
  font-size: clamp(3.4rem, 10.5vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: none;
}

.hero__sub {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--taupe);
}

.hero__meta {
  position: relative;
  border-top: 2px dashed var(--line-light);
  background: rgba(20, 20, 27, 0.72);
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.hero__cell {
  padding: 1.1rem 1.5rem 1.25rem 0;
}

.hero__cell + .hero__cell {
  border-left: 1px solid var(--line-light);
  padding-left: 1.5rem;
}

.hero__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__value {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--taupe);
}

.hero__dots {
  position: absolute;
  right: var(--pad);
  top: 7.2rem;
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}

.hero__dots button {
  width: 46px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(245, 241, 234, 0.28);
  cursor: pointer;
  overflow: hidden;
}

.hero__dots span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--paper);
}

.hero__dots button.is-active span {
  animation: dotFill 6.5s linear forwards;
}

@keyframes dotFill {
  to {
    width: 100%;
  }
}

.ticker {
  background: var(--ink-deep);
  border-top: 2px dashed var(--line-light);
  border-bottom: 2px dashed var(--line-light);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.ticker__list {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  margin: 0;
  padding: 1rem 1.3rem 1rem 0;
  list-style: none;
}

.ticker__list li {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: 0.05em;
  color: var(--taupe);
  white-space: nowrap;
}

.ticker__list li::after {
  content: "✱";
  font-size: 0.8em;
  color: var(--accent);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 9rem) var(--pad);
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.section__num {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

.section__head--light .section__label {
  color: var(--taupe);
}

.section__head--light .section__num {
  color: var(--paper);
}

.section__head::after {
  content: "";
  flex: 1;
  border-bottom: 2px dashed var(--line);
  transform: translateY(-0.35em);
}

.section__head--light::after {
  border-color: var(--line-light);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.intro h2 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  margin-bottom: 1.6rem;
}

.intro .lead {
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  line-height: 1.4;
  font-weight: 500;
}

.intro p {
  max-width: 36rem;
  color: rgba(29, 29, 38, 0.82);
}

.intro__note {
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--ink) !important;
}

.intro__media {
  position: relative;
  padding: 0 3rem 4rem 0;
}

.intro__frame {
  position: absolute;
  top: -1.4rem;
  right: 1.2rem;
  bottom: 2.6rem;
  left: 1.4rem;
  border: 2px dashed var(--taupe);
  z-index: 0;
}

.intro__img--main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.intro__img--small {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  border: 10px solid var(--paper);
  box-shadow: 14px 14px 0 rgba(29, 29, 38, 0.14);
}

.intro__caption {
  position: absolute;
  left: -2.2rem;
  bottom: 5.6rem;
  z-index: 3;
  margin: 0;
  padding: 0.55rem 0.85rem;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.buffet {
  background: var(--ink);
  color: var(--paper);
}

.buffet__head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem 4rem;
  align-items: end;
}

.buffet__head h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.buffet__head p {
  margin: 0 0 0.5rem;
  max-width: 26rem;
  color: var(--taupe-2);
}

.buffet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.buffet__item {
  padding: 2rem 2rem 2.4rem 0;
  border-bottom: 1px solid var(--line-light);
}

.buffet__item:not(:nth-child(3n + 1)) {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.buffet__num {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.buffet__item h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
  color: var(--paper);
}

.buffet__item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--taupe-2);
}

.buffet__highlight {
  max-width: var(--max);
  margin: 2.4rem auto 0;
  padding: 1.1rem 1.4rem;
  border: 2px dashed var(--accent);
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.prices__title {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.board {
  max-width: 60rem;
  margin: 0 auto 4rem;
  border-top: 2px solid var(--ink);
}

.board__row {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 1.2rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.board__name {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.board__name small {
  margin-top: 0.3rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

.board__leader {
  flex: 1;
  border-bottom: 2px dotted var(--taupe);
  transform: translateY(-0.45em);
}

.board__price {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  white-space: nowrap;
}

.board__price--word {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--accent);
}

.board__row--accent .board__price {
  color: var(--accent);
}

.board__row--soft {
  border-bottom: 2px solid var(--ink);
}

.times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 60rem;
  margin: 0 auto 2.5rem;
}

.times__card {
  padding: 1.6rem 1.8rem;
  border: 2px dashed var(--taupe-dark);
  border-radius: 4px;
}

.times__days {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.times__clock {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.prices__note {
  max-width: 60rem;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--taupe-dark);
}

.prices__note a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.gallery {
  background: var(--ink);
  color: var(--paper);
}

.gallery__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery__head h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.gallery__head p {
  margin: 0 0 0.5rem;
  color: var(--taupe-2);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.9rem;
  max-width: var(--max);
  margin: 0 auto;
}

.shot {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: var(--ink-deep);
  cursor: zoom-in;
  overflow: hidden;
}

.shot--wide {
  grid-column: span 6;
  aspect-ratio: 2 / 1;
}

.shot--tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2.07;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.4s;
  opacity: 0.88;
}

.shot:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.shot::after {
  content: "＋";
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--paper);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.shot:hover::after {
  opacity: 1;
  transform: none;
}

.shot--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 1.4rem;
  border: 2px dashed var(--line-light);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.shot--cta::after {
  content: "→";
  top: 1.4rem;
  right: 1.4rem;
  bottom: auto;
  opacity: 1;
  transform: none;
}

.shot--cta:hover {
  background: rgba(191, 181, 171, 0.08);
}

.shot__cta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.shot__cta-title {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--paper);
}

.reserve {
  background: var(--accent);
  color: var(--paper);
}

.reserve__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
}

.reserve h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 1.5rem 0 1.4rem;
}

.reserve__copy p {
  max-width: 30rem;
  color: rgba(245, 241, 234, 0.88);
}

.reserve__direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}

.reserve__direct a {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px dashed rgba(245, 241, 234, 0.5);
  margin-bottom: 0.7rem;
}

.reserve__direct a:hover {
  border-bottom-style: solid;
}

.reserve__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
  align-content: start;
  padding: 2rem;
  background: rgba(20, 20, 27, 0.14);
  border: 2px dashed rgba(245, 241, 234, 0.55);
  border-radius: 4px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.85);
}

.field label span {
  text-transform: none;
  letter-spacing: 0.05em;
  font-style: italic;
  font-weight: 400;
}

.field input {
  padding: 0.65rem 0.2rem;
  border: 0;
  border-bottom: 2px dotted rgba(245, 241, 234, 0.65);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.05rem;
}

.field input:focus {
  outline: none;
  border-bottom: 2px solid var(--paper);
}

.field input::placeholder {
  color: rgba(245, 241, 234, 0.5);
}

.reserve__form .btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  margin-top: 0.6rem;
}

.reserve__form .btn--dark:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.reserve__hint {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.contact__block h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1.3rem;
}

.contact__block h3 {
  margin-bottom: 1.3rem;
  font-size: 1.45rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px dashed var(--line);
}

.contact__block address {
  font-style: normal;
  margin-bottom: 1.4rem;
}

.contact__links a,
.contact__block address a {
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--taupe-dark);
}

.contact__links a:hover {
  border-bottom-style: solid;
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

.hours dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
}

.facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.6rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.facts li::before {
  content: "✱";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.footer {
  background: var(--ink-deep);
  color: var(--taupe-2);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 3rem;
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  align-items: start;
}

.footer__brand img {
  width: 230px;
  height: auto;
  opacity: 0.95;
}

.footer__motto {
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--taupe);
}

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

.footer__nav h4 {
  margin-bottom: 1.1rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer__nav a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.95rem;
  color: var(--taupe-2);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--paper);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--line-light);
  font-size: 0.85rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.4rem;
}

.footer__legal a {
  color: var(--taupe-2);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--paper);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  background: rgba(12, 12, 17, 0.96);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox__stage {
  margin: 0;
  max-width: min(1100px, 90vw);
}

.lightbox__stage img {
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 2px dashed var(--taupe);
  border-radius: 4px;
  background: rgba(20, 20, 27, 0.6);
  color: var(--taupe);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.3rem;
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--paper);
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .intro__grid,
  .buffet__head,
  .reserve__grid,
  .contact__grid,
  .footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__side {
    display: none;
  }

  .buffet__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buffet__item {
    padding: 2rem 1.6rem 2.2rem 0;
  }

  .buffet__item:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .buffet__item:nth-child(even) {
    padding-left: 1.6rem;
    border-left: 1px solid var(--line-light);
  }

  .shot,
  .shot--wide {
    grid-column: span 6;
  }

  .shot--tall {
    grid-row: auto;
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 150px;
  }

  .topbar .btn--ghost {
    display: none;
  }

  .hero__content {
    padding-top: 7rem;
  }

  .hero__dots {
    top: 6.5rem;
  }

  .hero__meta {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 0.6rem;
  }

  .hero__cell,
  .hero__cell + .hero__cell {
    border-left: 0;
    padding: 0.85rem 0;
  }

  .hero__cell + .hero__cell {
    border-top: 1px solid var(--line-light);
  }

  .buffet__grid,
  .times,
  .reserve__form,
  .footer__nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .buffet__item:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .shot,
  .shot--wide,
  .shot--tall {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }

  .intro__media {
    padding: 0 1.4rem 3.4rem 0;
  }

  .intro__caption {
    left: -2.9rem;
  }

  .lightbox__nav--prev {
    left: 0.6rem;
  }

  .lightbox__nav--next {
    right: 0.6rem;
  }

  .lightbox__close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
