/* ============================================================
   Mr. Paul's Chophouse — heritage steakhouse
   Palette, type, and components. Mobile-first.
   ============================================================ */

:root {
  --maroon:      #a61b0f;
  --maroon-deep: #7c130a;
  --black:       #0d0d0d;
  --charcoal:    #1a1613;
  --charcoal-2:  #211b17;
  --cream:       #f2f0ea;
  --cream-dim:   rgba(242, 240, 234, 0.88);
  --cream-faint: rgba(242, 240, 234, 0.72);
  --gold:        #cea862;
  --gold-bright: #e0c084;
  --gold-line:   rgba(200, 164, 92, 0.5);
  --hairline:    rgba(242, 240, 234, 0.2);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  margin: 0;
  letter-spacing: 0.005em;
}

::selection { background: var(--maroon); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--maroon);
  color: var(--cream);
  padding: 12px 20px;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow { max-width: 960px; }

/* Offset anchor jumps so the fixed nav never covers section tops */
section[id], main[id] { scroll-margin-top: var(--nav-h); }

.section {
  position: relative;
  padding: clamp(64px, 11vw, 128px) 0;
}
.section--alt  { background: var(--charcoal); }
.section--dark { background: #0a0a0a; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 0 0 18px;
}
.eyebrow--gold { color: var(--gold); }
/* Hero eyebrow: overflow-proof at every width (tighter tracking + fluid size) */
.hero .eyebrow--gold {
  font-size: clamp(9px, 2.5vw, 12px);
  letter-spacing: 0.14em;
  max-width: 92vw;
}

/* ---------- Ornamental divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 26px;
}
.ornament i {
  display: block;
  height: 1px;
  width: 54px;
  background: linear-gradient(90deg, transparent, var(--gold-line), var(--gold));
}
.ornament i:last-child {
  background: linear-gradient(90deg, var(--gold), var(--gold-line), transparent);
}
.ornament__diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
  box-shadow: 0 0 10px rgba(200, 164, 92, 0.5);
}
.ornament--left  { justify-content: flex-start; }
.ornament--left i:first-child { display: none; }
.ornament--light i {
  background: linear-gradient(90deg, transparent, rgba(200,164,92,0.55), var(--gold));
}
.ornament--light i:last-child {
  background: linear-gradient(90deg, var(--gold), rgba(200,164,92,0.55), transparent);
}
.section__head .ornament,
.hero__content .ornament,
.band__content .ornament,
.reserve-card .ornament,
.footer__base .ornament { justify-content: center; }

/* ---------- Display headings ---------- */
.h-display {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.01em;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section__lede {
  color: var(--cream-dim);
  font-size: 1.12rem;
  margin: 0 auto;
  max-width: 620px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: var(--btn-py) 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--maroon {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: 0 12px 30px -14px rgba(166, 27, 15, 0.9);
}
.btn--maroon:hover { background: var(--maroon-deep); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 240, 234, 0.4);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-line);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--wide { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0,0,0,0.66), rgba(0,0,0,0.12) 70%, rgba(0,0,0,0));
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--gold-line);
  box-shadow: 0 10px 34px -20px rgba(0,0,0,0.9);
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
  transition: height 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 46px; }

.nav__links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav__links > a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--gold-bright); }
.nav__links > a:not(.btn):hover::after { width: 100%; }
.btn--nav {
  padding: 11px 22px;
  border-color: var(--gold-line);
  color: var(--gold);
  letter-spacing: 0.16em;
}
.btn--nav:hover { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

/* Hamburger */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, #120e0b 0%, #0a0908 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 84%;
  max-width: 420px;
  text-align: center;
}
.mobile-menu__links > a:not(.btn) {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s var(--ease);
}
body.menu-open .mobile-menu__links > a:not(.btn) { transform: translateY(0); opacity: 1; }
.mobile-menu__links > a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu__links > a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu__links > a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu__links > a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu__links > a:not(.btn):hover { color: var(--gold-bright); }
.mobile-menu__rule {
  width: 60px; height: 1px;
  background: var(--gold-line);
  margin: 6px 0;
}
.mobile-menu__phone {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cream-faint);
  margin: 4px 0 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 22px 108px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  animation: heroDrift 22s ease-out forwards;
  filter: saturate(0.9) brightness(0.9) contrast(1.03);
}
@keyframes heroDrift {
  from { transform: scale(1.14); }
  to   { transform: scale(1.0); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 92% at 50% 34%, rgba(0,0,0,0.18), rgba(0,0,0,0.80) 82%),
    linear-gradient(180deg, rgba(8,6,5,0.62) 0%, rgba(8,6,5,0.26) 38%, rgba(8,6,5,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 860px; width: 100%; }
.hero__title {
  font-size: clamp(2.4rem, 10.2vw, 8.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin: 0.06em 0 0;
  overflow-wrap: break-word;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3.4vw, 1.7rem);
  color: var(--cream);
  margin: 0 auto 34px;
  max-width: 24ch;
  text-wrap: balance;
  letter-spacing: 0.02em;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--cream);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(-100%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}
.hero__scroll-word {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Story ---------- */
.story__grid {
  display: grid;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.story__copy p { color: var(--cream-dim); margin: 0 0 20px; }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  line-height: 1.35;
  color: var(--cream);
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  border-left: 2px solid var(--maroon);
}
.stats {
  list-style: none;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num.stat__num--sm { font-size: 1.5rem; line-height: 1.08; white-space: nowrap; }
.stat__num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold-bright);
  line-height: 1;
}
.stat__label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.9);
}
.frame::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(242,240,234,0.14);
  pointer-events: none;
}
.frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story__figure:hover .frame img { transform: scale(1.04); }
.frame__caption {
  margin: 14px 2px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-faint);
  text-align: center;
}

/* ---------- Cuisine gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.gallery__media { overflow: hidden; }
.gallery__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(1.02) contrast(1.02);
}
.gallery__item:hover .gallery__media img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 64px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(180deg, transparent, rgba(6,5,4,0.55) 45%, rgba(6,5,4,0.94));
}
.gallery__cap {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.menu__link {
  display: inline-block; margin-left: 6px;
  font-family: var(--sans); font-size: 0.82rem; font-style: normal;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-line);
  padding-bottom: 1px; transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu__link:hover { color: var(--gold-bright); border-color: var(--gold); }
.map { position: relative; }
.map__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s var(--ease);
}
.map__link:hover { color: var(--gold-bright); }
.map__link span { transition: transform 0.3s var(--ease); }
.map__link:hover span { transform: translateX(4px); }
.gallery__sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.cuisine__foot { text-align: center; margin-top: 44px; }

/* ---------- Menu preview ---------- */
.menu__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 56px);
}
.menu__section {
  font-size: 1.7rem;
  color: var(--gold-bright);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
  letter-spacing: 0.04em;
}
.menu__list { list-style: none; margin: 0; padding: 0; }
.menu__item { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.menu__item:last-child { border-bottom: 0; }
.menu__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--cream);
  white-space: nowrap;
}
.menu__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(242,240,234,0.38);
  transform: translateY(-4px);
}
.menu__price {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.menu__desc {
  display: block;
  font-size: 0.98rem;
  color: var(--cream-dim);
  margin-top: 3px;
}
.menu__note {
  text-align: center;
  margin: 48px 0 0;
  color: var(--cream-faint);
  font-family: var(--serif);
  font-size: 1.15rem;
}

/* ---------- Experience band (full-bleed) ---------- */
.band {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vw, 150px) 22px;
  overflow: hidden;
}
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.band__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(0,0,0,0.42), rgba(0,0,0,0.82)),
    linear-gradient(180deg, rgba(10,7,5,0.78), rgba(10,7,5,0.6));
}
.band__content { position: relative; z-index: 2; max-width: 780px; }
.band__title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}
.band__copy {
  color: rgba(242, 240, 234, 0.94);
  font-size: 1.14rem;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

/* ---------- Film / video facade ---------- */
.video {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-line);
  box-shadow: 0 50px 100px -50px rgba(0,0,0,0.95);
}
.video__poster {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.66) saturate(1.05);
}
.video:hover .video__poster { transform: scale(1.04); filter: brightness(0.5); }
.video__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}
.video__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease);
}
.video:hover .video__play { transform: translate(-50%, -50%) scale(1.08); }
.video__play svg { filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6)); }
.video__play-bg { fill: var(--maroon); opacity: 0.94; }
.video__play-tri { fill: none; stroke: var(--cream); stroke-width: 3; stroke-linejoin: round; }
.video__caption {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  color: var(--cream);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  pointer-events: none;
}
.video.is-playing { cursor: default; }
.video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Visit ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 56px);
  align-items: start;
}
.visit__block { margin: 26px 0; }
.visit__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.visit__hours { list-style: none; margin: 0; padding: 0; }
.visit__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--cream-dim);
  font-size: 1rem;
}
.visit__hours li span:last-child { color: var(--cream); }
.visit__addr {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 8px;
}
.visit__tel {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  transition: color 0.3s var(--ease);
}
.visit__tel:hover { color: var(--cream); }
.map {
  margin-top: 22px;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  filter: grayscale(0.3) contrast(1.05);
}
.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.visit__reserve { position: sticky; top: calc(var(--nav-h) + 24px); }
.reserve-card {
  background: linear-gradient(160deg, var(--charcoal-2), #17110d);
  border: 1px solid var(--gold-line);
  padding: clamp(34px, 5vw, 52px) clamp(26px, 4vw, 44px);
  text-align: center;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9);
}
.reserve-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.reserve-card__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 16px;
}
.reserve-card__copy { color: var(--cream-dim); margin: 0 0 28px; }
.reserve-card__fine {
  margin: 18px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---------- Footer ---------- */
.footer {
  background: #070605;
  border-top: 1px solid var(--gold-line);
  padding: clamp(56px, 8vw, 88px) 0 0;
  color: var(--cream-dim);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer__logo { height: 78px; width: auto; margin-bottom: 16px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0;
}
.footer__h {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer address { font-style: normal; line-height: 1.9; }
.footer__hours { margin: 0; line-height: 1.9; }
.footer a { transition: color 0.3s var(--ease); }
.footer address a:hover { color: var(--gold-bright); }
.footer__nav { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer__nav a:hover { color: var(--gold-bright); }
.footer__base {
  margin-top: clamp(48px, 7vw, 72px);
  padding: 30px 24px 34px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.footer__copy {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
}
.footer__demo {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---------- Scroll reveal ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .menu__cols { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__base { display: flex; flex-direction: column; align-items: center; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .story__grid { grid-template-columns: 1.05fr 0.95fr; }
  .visit__grid { grid-template-columns: 1.25fr 0.75fr; }
  .band { min-height: 80vh; }
}

@media (min-width: 1100px) {
  body { font-size: 18px; }
}

/* ---------- Small phones: prevent hero overflow ---------- */
@media (max-width: 480px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero .eyebrow--gold { margin-bottom: 14px; }
  .hero__sub { font-size: 1.08rem; max-width: 26ch; }
}

/* ---------- Signatures (homepage highlight) ---------- */
.signatures { background: var(--charcoal); }
.sig-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.sig-card {
  position: relative;
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15));
  padding: 32px 28px 30px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.sig-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.sig-card__tag {
  display: inline-block;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line); border-radius: 2px;
  padding: 4px 10px; margin-bottom: 20px;
}
.sig-card__tag--signature { color: var(--cream); background: var(--maroon); border-color: var(--maroon); }
.sig-card__name {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.85rem; line-height: 1.1; color: var(--cream);
  margin: 0 0 12px;
}
.sig-card__desc {
  color: var(--cream-dim); font-size: 1rem; line-height: 1.5;
  margin: 0 0 22px; flex: 1;
}
.sig-card__price {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--gold);
  padding-top: 16px; border-top: 1px solid var(--hairline); width: 100%;
}
.sig-card--hero {
  border-color: var(--maroon);
  box-shadow: 0 30px 70px -50px rgba(166,27,15,0.8);
}
@media (min-width: 820px) {
  .sig-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .sig-card--hero { transform: scale(1.03); }
  .sig-card--hero:hover { transform: scale(1.03) translateY(-4px); }
}

/* ---------- Reel strip (tableside videos) ---------- */
.reel-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 340px;
  margin: 0 auto;
}
.reel {
  position: relative; margin: 0;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  background: #000;
}
.reel__video {
  display: block; width: 100%; aspect-ratio: 9 / 16;
  object-fit: cover;
}
.reel__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 16px 14px;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  background: linear-gradient(180deg, transparent, rgba(6,5,4,0.9));
  pointer-events: none;
}
@media (min-width: 720px) {
  .reel-strip { grid-template-columns: repeat(3, 1fr); max-width: 900px; gap: 18px; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page .nav { background: rgba(10, 9, 8, 0.94); border-bottom-color: var(--gold-line); }
.menu-page { padding-top: 0; }
.wrap--menu { max-width: 1180px; }

.menu-hero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + 60px) 22px 60px;
  overflow: hidden;
}
.menu-hero__media { position: absolute; inset: 0; z-index: 0; }
.menu-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(0.88) brightness(0.82); }
.menu-hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 40%, rgba(0,0,0,0.35), rgba(0,0,0,0.82)),
    linear-gradient(180deg, rgba(8,6,5,0.7), rgba(8,6,5,0.55) 45%, rgba(13,13,13,1));
}
.menu-hero__content { position: relative; z-index: 2; max-width: 760px; }
.menu-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  font-weight: 600; line-height: 1; margin: 6px 0 0;
}
.menu-hero__sub {
  color: var(--cream-dim); font-size: clamp(1rem, 2.4vw, 1.18rem);
  margin: 8px auto 0; max-width: 46ch; line-height: 1.5;
}

/* Toggle */
.menu-switch {
  position: sticky; top: var(--nav-h); z-index: 40;
  display: flex; justify-content: center; gap: 10px;
  padding: 20px 16px;
  background: linear-gradient(180deg, var(--black) 60%, rgba(13,13,13,0));
}
.menu-switch__btn {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream-dim); background: transparent;
  border: 1px solid var(--gold-line); border-radius: 2px;
  padding: 12px 30px; cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-switch__btn:hover { color: var(--cream); border-color: var(--gold); }
.menu-switch__btn.is-active {
  color: var(--cream); background: var(--maroon); border-color: var(--maroon);
}

.menu-doc { padding: 20px 0 40px; }
.menu-doc.is-hidden { display: none; }
.menu-doc__note {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: 1.08rem; color: var(--gold); max-width: 60ch;
  margin: 0 auto 40px; padding: 0 20px; line-height: 1.5;
}
.mcols {
  display: grid; grid-template-columns: 1fr; gap: 40px 56px;
  padding: 0 22px;
}
.mgroup__title {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 600;
  color: var(--cream); margin: 0 0 4px;
  padding-bottom: 12px; position: relative;
}
.mgroup__title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 46px; height: 2px; background: var(--maroon);
}
.mgroup__title--spaced { margin-top: 40px; }
.mgroup__lede { color: var(--cream-faint); font-style: italic; font-family: var(--serif); font-size: 1.02rem; margin: 10px 0 4px; }
.mlist { list-style: none; margin: 18px 0 0; padding: 0; }
.mitem { padding: 11px 0; border-bottom: 1px solid var(--hairline); }
.mlist--tight .mitem { padding: 7px 0; }
.mitem:last-child { border-bottom: 0; }
.mitem__head { display: flex; align-items: baseline; gap: 6px 12px; flex-wrap: wrap; }
.mitem__name {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  color: var(--cream); line-height: 1.15;
}
.mitem__price {
  margin-left: auto;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--gold);
  padding-left: 10px; text-align: right;
}
.mitem__desc {
  display: block; margin-top: 3px;
  font-size: 0.95rem; color: var(--cream-dim); line-height: 1.4;
  max-width: 52ch;
}
.mitem--feature {
  padding-left: 12px;
  border-left: 2px solid var(--gold-line);
  margin-left: -14px; padding-left: 12px;
}
.mitem__tag {
  display: inline-block; vertical-align: middle;
  margin-left: 8px;
  font-family: var(--sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line); border-radius: 2px;
  padding: 2px 7px; white-space: nowrap;
  transform: translateY(-2px);
}
.mitem__tag--signature {
  color: var(--cream); background: var(--maroon); border-color: var(--maroon);
}

.menu-legal {
  max-width: 780px; margin: 20px auto 0; padding: 30px 24px 0;
  border-top: 1px solid var(--hairline);
  text-align: center; font-size: 12px; line-height: 1.6;
  color: var(--cream-faint); letter-spacing: 0.01em;
}

.menu-cta { text-align: center; padding: 70px 22px 90px; }
.menu-cta__title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; margin: 10px 0 6px; }
.menu-cta__copy { color: var(--cream-dim); margin: 0 0 26px; }

@media (min-width: 720px) {
  .mcols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .mcols { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__img { transform: none; animation: none; }
}
