:root {
  --brick: #B63A1F;
  --brick-dark: #8C2A12;
  --amber: #C8922A;
  --amber-light: #E8B04A;
  --cream: #F5EDD8;
  --cream-dark: #EAD9B8;
  --deep: #131310;
  --spice: #D4510F;

  --display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--deep);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============== NAV ============== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(19,19,16,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 28px;
  border-bottom-color: rgba(245,237,216,.08);
}
.nav__logo {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: .005em;
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; z-index: 2;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.nav__logo span { color: var(--amber-light); font-weight: 700; }

/* ── Hero logo ── */
.hero__logo-img {
  display: block;
  height: clamp(130px, 30vh, 320px); /* height-based so it never pushes content into the nav */
  width: auto;
  max-width: 90%;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.45));
}
.nav__links {
  display: flex; align-items: center; gap: 36px;
  font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.nav__links a { position: relative; padding: 4px 0 6px; }
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1px;
  background: var(--amber-light);
  opacity: 0.7;
  transition: width .35s ease, opacity .35s ease;
}
.nav__links a:not(.btn):hover::after {
  width: 100%;
  opacity: 1;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--amber {
  background: var(--amber);
  color: var(--deep);
}
.btn--amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(200,146,42,.6);
}
.nav .btn--amber {
  padding: 10px 22px;
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: .22em;
  border: 1px solid rgba(245,237,216,.45);
  border-radius: 2px;
  box-shadow: none;
  position: relative;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.nav .btn--amber::after { display: none; }
.nav .btn--amber:hover {
  background: rgba(245,237,216,.07);
  border-color: rgba(245,237,216,.85);
  color: var(--cream);
  transform: none;
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,237,216,.55);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(245,237,216,.08);
}
.btn--brick { background: var(--brick); color: var(--cream); }
.btn--brick:hover { background: var(--brick-dark); transform: translateY(-2px); }
.btn--deep {
  background: var(--deep); color: var(--cream);
}
.btn--deep:hover { background: #222220; transform: translateY(-2px); }

/* mobile hamburger */
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 50%;
  background: rgba(19,19,16,.6);
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px; background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 0;
    flex-direction: column; justify-content: center;
    gap: 32px;
    background: rgba(19,19,16,.96);
    backdrop-filter: blur(20px);
    font-size: 18px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.6,.05,.3,1);
  }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 8px 0; }
}

/* ============== HERO ============== */
.hero {
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  flex-direction: row;
}

/* ── Left: solid dark panel with content ── */
.hero__left {
  width: 50%;
  flex-shrink: 0;
  background: var(--deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
}
.hero__left::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(200,146,42,.22);
  pointer-events: none;
  z-index: 1;
}

/* ── Right: video / image panel ── */
.hero__right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Overlay not needed on desktop — left panel provides contrast */
.hero__overlay { display: none; }
.hero__sound {
  position: absolute;
  bottom: 26px;
  left: 28px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,216,.35);
  background: rgba(19,19,16,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.hero__sound:hover {
  border-color: rgba(245,237,216,.75);
  background: rgba(19,19,16,.65);
}
.hero__sound-icon {
  width: 16px;
  height: 16px;
}
.sound-slash { display: block; }
.hero__sound.is-unmuted .sound-slash { display: none; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(19,19,16,.2) 0%, rgba(19,19,16,.55) 60%, rgba(19,19,16,.92) 100%),
    linear-gradient(180deg, rgba(19,19,16,.2) 0%, rgba(19,19,16,.0) 30%, rgba(19,19,16,.85) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.hero__label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 500;
}
.hero__label::before, .hero__label::after {
  content: ""; width: 28px; height: 1px; background: var(--amber-light);
}
.hero__headline {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 168px);
  line-height: .88;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--cream);
}
.hero__headline em {
  font-style: normal;
  color: var(--amber-light);
}
.hero__tagline {
  display: block;
  font-family: var(--serif);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(245,237,216,.6);
  margin-top: 14px;
  text-align: center;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Hero CTAs — rectangular outlined, matches navbar style ── */
.hero__ctas .btn {
  border-radius: 3px;
}
.hero__ctas .btn--amber {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,216,.5);
  box-shadow: none;
}
.hero__ctas .btn--amber:hover {
  background: rgba(245,237,216,.07);
  border-color: rgba(245,237,216,.9);
  transform: none;
  box-shadow: none;
}
.hero__ctas .btn--ghost {
  border-color: rgba(245,237,216,.35);
}
.hero__ctas .btn--ghost:hover {
  border-color: rgba(245,237,216,.75);
  background: rgba(245,237,216,.06);
}

.hero__scroll {
  position: absolute; bottom: 26px; right: 28px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 500;
  writing-mode: horizontal-tb;
}
.hero__scroll-line {
  position: relative; width: 60px; height: 1px; background: rgba(245,237,216,.25);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; width: 40%; background: var(--amber-light);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}


/* ============== MENU SHOWCASE ============== */
.mshow {
  background: var(--deep);
  color: var(--cream);
  overflow: hidden;
}
.mshow__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 100vh;
}

/* ── Divider ── */
.mshow__divider {
  background: rgba(245,237,216,.12);
}

/* ── LEFT ── */
.mshow__left {
  padding: 80px 64px 100px;
  display: flex;
  flex-direction: column;
}
.mshow__heading {
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 240px);
  line-height: .82;
  letter-spacing: -.02em;
  color: var(--amber-light);
  margin: 0 0 52px;
}
.mshow__food-img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 52px;
}
.mshow__food-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.mshow__food-img:hover img { transform: scale(1.04); }

/* Drop-cap paragraph */
.mshow__copy p {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(245,237,216,.75);
  margin: 0 0 36px;
}
.mshow__dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 72px;
  line-height: .88;
  color: var(--deep);
  background: var(--amber);
  padding: 6px 14px 4px 12px;
  margin: 4px 14px 0 0;
}

/* View Menu button */
.mshow__view-btn {
  display: inline-block;
  align-self: flex-end;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--amber-light);
  border: 1.5px solid var(--amber-light);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease;
}
.mshow__view-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--deep);
}

/* ── RIGHT ── */
.mshow__right {
  padding: 80px 64px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Book label + ORDER NOW block */
.mshow__book {
  width: 100%;
  margin-bottom: 52px;
}
.mshow__book-label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 500;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mshow__book-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(245,237,216,.15);
}
.mshow__order-btn {
  display: block;
  width: 100%;
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: .88;
  letter-spacing: -.01em;
  color: var(--deep);
  background: var(--amber);
  padding: 22px 32px;
  text-align: center;
  transition: background .25s ease;
  border-radius: 2px;
}
.mshow__order-btn:hover { background: var(--amber-light); }

/* Right-side image */
.mshow__right-img {
  width: 88%;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 44px;
}
.mshow__right-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.mshow__right-img:hover img { transform: scale(1.04); }

/* Phone number */
.mshow__tel {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--amber-light);
  letter-spacing: .02em;
  margin-bottom: 44px;
  transition: color .2s;
}
.mshow__tel:hover { color: var(--cream); }

/* Yelp reservation link */
.mshow__yelp {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid var(--amber-light);
  border-radius: 999px;
  padding: 10px 22px;
  margin-bottom: 32px;
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
}
.mshow__yelp:hover { color: var(--deep); background: var(--amber-light); border-color: var(--amber-light); }
.mshow__yelp svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Info rows */
.mshow__details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid rgba(245,237,216,.12);
  padding-top: 28px;
}
.mshow__detail { text-align: center; }
.mshow__detail h4 {
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-light);
  margin: 0 0 10px;
}
.mshow__detail p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(245,237,216,.65);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mshow__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .mshow__divider {
    width: calc(100% - 48px);
    height: 1px;
    margin: 0 24px;
  }
  .mshow__left  { padding: 64px 28px 56px; }
  .mshow__right { padding: 56px 28px 72px; }
  .mshow__heading { font-size: clamp(100px, 28vw, 180px); }
  .mshow__view-btn { align-self: center; }
  .mshow__right-img { width: 72%; }
}
@media (max-width: 480px) {
  .mshow__heading { font-size: 22vw; }
  .mshow__left  { padding: 48px 20px 48px; }
  .mshow__right { padding: 48px 20px 60px; }
  .mshow__right-img { width: 100%; }
}

/* ============== STORY ============== */
.story {
  background: var(--deep);
  color: var(--cream);
  padding: 120px 28px 160px;
  position: relative;
  overflow: hidden;
}
.story__corner {
  position: absolute;
  width: 88px; height: 88px;
  background: var(--brick);
}
.story__corner--tr { top: 0; right: 0; }
.story__corner--bl { bottom: 110px; left: 0; }

.story__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.label {
  display: inline-block;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 500;
  margin-bottom: 28px;
  position: relative; padding-left: 40px;
}
.label::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px; background: var(--amber-light);
}
.story__left { display: flex; flex-direction: column; }
.story__float {
  width: clamp(180px, 26%, 280px);
  margin-bottom: 40px;
}
.story__float img {
  width: 100%; height: auto;
  aspect-ratio: 5/4; object-fit: cover;
  border-radius: 3px;
  filter: saturate(1.08) brightness(.95);
}
.story__name {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 130px);
  line-height: .86;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 18px;
}
.story__role {
  font-size: 12px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 600;
  margin-bottom: 34px;
}
.story__body {
  font-family: var(--serif);
  font-size: 16.5px; line-height: 1.82;
  color: rgba(245,237,216,.72);
  text-align: justify;
  max-width: 500px;
}
.story__right {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-end;
}
.story__oval {
  width: 100%; max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: 50%;
  overflow: hidden;
}
.story__oval img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.story__scatter {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: -70px; right: -10px;
  border: 5px solid var(--deep);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.story__scatter img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============== MENU ============== */
.menu {
  background: var(--cream);
  padding: 140px 28px 120px;
  position: relative;
}
.menu__head {
  max-width: 1280px; margin: 0 auto 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: end;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  margin: 0;
  color: var(--deep);
}
.menu__title em { font-style: italic; color: var(--brick); }
.menu__more {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 500;
  color: var(--deep);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--deep);
  transition: color .25s, border-color .25s, gap .25s;
  display: inline-flex; gap: 8px;
}
.menu__more:hover { color: var(--brick); border-color: var(--brick); gap: 14px; }

.menu__label { color: var(--brick); }
.menu__label::before { background: var(--brick); }

.menu__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
  border: 1px solid rgba(19,19,16,.06);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(19,19,16,.35);
}
.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card__img img { transform: scale(1.07); }
.card__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.card__cat {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brick); font-weight: 500;
  margin-bottom: 10px;
}
.card__name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--deep);
}
.card__desc {
  font-size: 14px; line-height: 1.55;
  color: rgba(19,19,16,.65);
  margin: 0 0 18px;
  flex: 1;
}
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(19,19,16,.15);
}
.card__price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--amber);
  letter-spacing: .01em;
}
.card__order {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 500;
  color: var(--deep);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  transition: background .25s, color .25s;
}
.card__order:hover { background: var(--deep); color: var(--cream); }

/* ============== QUOTE BREAK ============== */
.quote {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.quote__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.quote__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(19,19,16,.92) 0%, rgba(19,19,16,.78) 35%, rgba(19,19,16,.25) 70%, rgba(19,19,16,0) 100%);
}
.quote__inner {
  position: relative; z-index: 2;
  padding: 100px 28px;
  max-width: 1280px; margin: 0 auto;
  width: 100%;
}
.quote__text {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: .9;
  margin: 0;
  color: var(--cream);
  max-width: 12ch;
  letter-spacing: -.005em;
}
.quote__text em { font-style: normal; color: var(--amber-light); }
.quote__credit {
  margin-top: 28px;
  font-family: var(--serif); font-style: italic;
  color: rgba(245,237,216,.7);
  font-size: 18px;
}

/* ============== CHEF'S SPECIALS ============== */
.specials {
  background: var(--brick);
  color: var(--cream);
  padding: 140px 28px 120px;
  position: relative;
  overflow: hidden;
}
.specials__head {
  max-width: 1280px; margin: 0 auto 56px;
  text-align: center;
}
.specials__label { color: var(--amber-light); padding-left: 0; }
.specials__label::before { display: none; }
.specials__title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: .9;
  margin: 0;
  letter-spacing: -.005em;
}
.specials__title em { color: var(--amber-light); font-style: italic; font-family: var(--serif); font-weight: 900; }
.specials__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(245,237,216,.8);
  margin: 18px auto 0;
  max-width: 600px;
}
.specials__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pcard {
  position: relative;
  aspect-ratio: 3/4.4;
  overflow: hidden;
  border-radius: 8px;
  color: var(--cream);
  display: block;
}
.pcard img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.pcard:hover img { transform: scale(1.08); }
.pcard__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,19,16,.1) 0%, rgba(19,19,16,0) 35%, rgba(19,19,16,.85) 100%);
}
.pcard__num {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--display);
  font-size: 22px;
  background: rgba(245,237,216,.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,237,216,.3);
}
.pcard__body {
  position: absolute; left: 24px; right: 24px; bottom: 26px;
}
.pcard__tag {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 500;
  margin-bottom: 10px;
}
.pcard__name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 14px;
}
.pcard__foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(245,237,216,.25);
  padding-top: 14px;
}
.pcard__price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--amber-light);
}
.pcard__arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,216,.4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.pcard:hover .pcard__arrow { background: var(--amber-light); color: var(--deep); transform: rotate(-45deg); border-color: var(--amber-light); }

/* ============== GALLERY MOSAIC ============== */
.gallery {
  background: var(--cream-dark);
  padding: 140px 28px 120px;
}
.gallery__head {
  max-width: 1280px; margin: 0 auto 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: end;
}
.gallery__title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: .9;
  margin: 0;
  color: var(--deep);
  letter-spacing: -.005em;
}
.gallery__title em { font-family: var(--serif); font-weight: 900; font-style: italic; color: var(--brick); }
.gallery__intro {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.5;
  color: rgba(19,19,16,.7);
  max-width: 480px;
  justify-self: end;
}
.mosaic {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
}
.mosaic > div {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease, filter .5s ease;
  filter: saturate(.95);
}
.mosaic > div:hover img { transform: scale(1.06); filter: saturate(1.15); }
.m1 { grid-column: span 3; grid-row: span 3; }
.m2 { grid-column: span 3; grid-row: span 2; }
.m3 { grid-column: span 2; grid-row: span 2; }
.m4 { grid-column: span 1; grid-row: span 2; }
.m5 { grid-column: span 3; grid-row: span 2; }
.m6 { grid-column: span 3; grid-row: span 2; }

/* ============== ORDER CTA ============== */
.cta {
  background: var(--amber);
  color: var(--deep);
  padding: 140px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 26vw;
  color: var(--deep);
  opacity: .08;
  pointer-events: none;
  letter-spacing: -.02em;
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.cta__inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
}
.cta__label-decor {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 26px;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--brick); font-weight: 500;
}
.cta__label-decor::before, .cta__label-decor::after {
  content: ""; width: 36px; height: 1px; background: var(--brick);
}
.cta__title {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  margin: 0 0 22px;
  color: var(--deep);
  text-wrap: balance;
}
.cta__addr {
  font-size: 16px;
  color: rgba(19,19,16,.78);
  margin: 0 0 38px;
  letter-spacing: .02em;
}
.cta__btn {
  padding: 18px 36px;
  font-size: 14px;
  background: var(--deep);
  color: var(--cream);
}
.cta__btn:hover { background: var(--brick); }

/* ============== INFO ============== */
.info {
  background: var(--deep);
  color: var(--cream);
  padding: 90px 28px;
}
.info__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
}
.info__col h4 {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 500;
  margin: 0 0 18px;
}
.info__col p, .info__col a {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  color: var(--cream);
  margin: 0;
  text-decoration: none;
}
.info__col small {
  display: block;
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 13.5px;
  color: rgba(245,237,216,.6);
  letter-spacing: .02em;
  margin-top: 6px;
}
.info__col .info__yelp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--amber-light);
  margin-top: 10px;
  text-decoration: none;
  transition: color .25s, opacity .25s;
}
.info__col .info__yelp:hover { color: #fff; opacity: .85; }
.info__col .info__yelp svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ============== FAQ ============== */
.faq {
  background: var(--deep);
  color: var(--cream);
  padding: 100px 28px;
}
.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq__label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.faq__heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 56px;
  line-height: 1.15;
}
.faq__item {
  border-top: 1px solid rgba(245,237,216,.12);
  padding: 28px 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(245,237,216,.12); }
.faq__question {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--cream);
}
.faq__answer {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245,237,216,.68);
  margin: 0;
}

/* ============== FOOTER ============== */
.footer {
  background: #0d0d0c;
  color: var(--cream);
  padding: 80px 28px 40px;
  text-align: center;
}
.footer__logo {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  color: var(--amber-light);
  margin: 0 0 28px;
  letter-spacing: -.005em;
}
.footer__nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,237,216,.7);
  margin-bottom: 36px;
}
.footer__nav a:hover { color: var(--amber-light); }
.footer__social {
  display: flex; justify-content: center; gap: 14px;
  margin-bottom: 36px;
}
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245,237,216,.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer__social a:hover { background: var(--amber); border-color: var(--amber); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; fill: var(--cream); }
.footer__copy {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,237,216,.4);
  padding-top: 28px;
  border-top: 1px solid rgba(245,237,216,.08);
}
.footer__copy span { color: var(--amber-light); }

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .specials__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .mosaic { grid-auto-rows: 110px; gap: 14px; }
}
@media (max-width: 768px) {
  .nav { padding: 14px 18px; }
  .nav.scrolled {
    padding: 10px 18px;
    /* backdrop-filter breaks position:fixed on nav__links overlay — use solid bg instead */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(19,19,16,.96);
  }

  /* ── Hero mobile: full-screen video with content overlaid ── */
  .hero {
    display: block;
    position: relative;
    height: 100svh;
    min-height: 560px;
  }
  .hero__left {
    position: absolute;
    inset: 0;
    width: 100%;
    background: transparent;
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__left::before { display: none; }
  .hero__right {
    position: absolute;
    inset: 0;
    width: 100%;
  }
  .hero__overlay { display: block; }
  .hero__content {
    padding: 80px 22px 48px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
  }
  .hero__label {
    display: block;
    white-space: normal;
    font-size: 10px;
    letter-spacing: .22em;
  }
  .hero__label::before, .hero__label::after { display: none; }
  .hero__headline { margin: 0; }
  .hero__logo-img { height: clamp(120px, 20svh, 220px); margin: 0 auto; }
  .hero__ctas { margin-top: 0; padding-top: 0; gap: 10px; justify-content: center; }
  .hero__scroll { display: none; }
  .story { padding: 80px 20px 120px; }
  .story__inner { grid-template-columns: 1fr; gap: 56px; }
  .story__corner { width: 56px; height: 56px; }
  .story__corner--bl { bottom: 60px; }
  .story__float { width: 44%; }
  .story__name { font-size: clamp(60px, 18vw, 100px); }
  .story__oval { border-radius: 40%; max-width: 100%; }
  .story__scatter { width: 130px; height: 130px; bottom: -40px; right: 10px; }
  .story__body { text-align: left; }
  .menu { padding: 90px 18px 80px; }
  .menu__head { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .menu__grid { grid-template-columns: 1fr; gap: 24px; }
  .specials { padding: 90px 18px 80px; }
  .specials__grid { grid-template-columns: 1fr; }
  .pcard { aspect-ratio: 4/4.5; }
  .gallery { padding: 90px 18px 80px; }
  .gallery__head { grid-template-columns: 1fr; }
  .gallery__intro { justify-self: start; }
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; }
  .m1 { grid-column: span 4; grid-row: span 3; }
  .m2 { grid-column: span 2; grid-row: span 2; }
  .m3 { grid-column: span 2; grid-row: span 2; }
  .m4 { grid-column: span 2; grid-row: span 2; }
  .m5 { grid-column: span 2; grid-row: span 2; }
  .m6 { grid-column: span 4; grid-row: span 2; }
  .cta { padding: 90px 18px; }
  .info { padding: 64px 18px; }
  .info__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer { padding: 60px 18px 30px; }
}
@media (max-width: 640px) {
  .hero { min-height: 600px; }
  .hero__headline { font-size: 80px; }
  .quote__overlay {
    background: linear-gradient(180deg, rgba(19,19,16,.5) 0%, rgba(19,19,16,.92) 100%);
  }
  .quote__text { font-size: 64px; }
}
