/*!
Theme Name: afrospizza
Theme URI: #
Author: afrospizza
Author URI: #
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: afrospizza
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.


Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #1b232b;
  --bg-1: #232c34;
  --bg-2: #2d3740;
  --bg-3: #38434c;
  --steel: #4a5c68;
  --steel-lt: #7690a0;
  --cream: #faf6ec;
  --cream-dim: #c3cdd3;
  --cream-mut: #8e9aa2;
  --gold: #e39a3a;
  --gold-lt: #f8c766;
  --gold-glow: rgba(227, 154, 58, .24);
  --gold-brd: rgba(227, 154, 58, .45);
  --ember: #c74538;
  --ember-glow: rgba(199, 69, 56, .2);
  --border: rgba(200, 220, 230, .16);
  --radius: 2px;
  --display: "Big Shoulders Stencil Display", Impact, sans-serif;
  --body: "IBM Plex Sans", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 600px at 15% 0%, rgba(217, 138, 46, .09), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(58, 74, 86, .35), transparent 55%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.65;
  overflow-x: clip;
  overflow-y: visible;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

@media (prefers-reduced-motion: reduce) {
  body::before {
    opacity: .035;
  }
}

/* Blueprint corner marks — the signature motif, used to frame hero + section heads */
.rivet {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--steel-lt);
  opacity: .8;
}

.corner-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corner-marks::before,
.corner-marks::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid var(--gold-brd);
  border-left: 1.5px solid var(--gold-brd);
  top: 0;
  left: 0;
}

.corner-marks::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  border: none;
  border-bottom: 1.5px solid var(--gold-brd);
  border-right: 1.5px solid var(--gold-brd);
}

/* Frico edge — the caramelized-cheese gradient bar used on every card, the signature detail */
.frico-edge {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 50%, var(--ember) 100%);
}

.spec-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--steel-lt);
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ============ UTILITIES ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.headline {
  font-family: var(--display);
  letter-spacing: .01em;
  line-height: .92;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  margin-bottom: 18px;
}

.lede {
  color: var(--cream-dim);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
}

.section {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-head .lede {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 19px 38px;
  font-size: 16px;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

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

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

.btn-dark {
  background: #0a0a0a;
  color: var(--cream);
  border-color: #0a0a0a;
}

.btn-dark:hover {
  background: #1c1c1c;
}

.tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
}

.tag-gold {
  background: var(--gold-glow);
  border-color: var(--gold-brd);
  color: var(--gold);
}

.tag-ember {
  background: var(--ember-glow);
  border-color: rgba(193, 53, 47, .35);
  color: #e35a54;
}

.tag-muted {
  border-color: var(--border);
  color: var(--cream-dim);
}

/* scroll-reveal */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv.d1 {
  transition-delay: .08s;
}

.rv.d2 {
  transition-delay: .16s;
}

.rv.d3 {
  transition-delay: .24s;
}

.rv.d4 {
  transition-delay: .32s;
}

.rv-left {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv-left.in {
  opacity: 1;
  transform: translateX(0);
}

.rv-right {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.rv-right.in {
  opacity: 1;
  transform: translateX(0);
}

.rv-scale {
  opacity: 0;
  transform: scale(.94) translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.rv-scale.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .rv,
  .rv-left,
  .rv-right,
  .rv-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation: none !important;
  }
}

/* ============ SCROLL PROGRESS ============ */
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 999;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============ LOGO (text-based — never "breaks") ============ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  letter-spacing: .03em;
  color: var(--cream);
  line-height: 1;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.logo.sm .logo-img {
  height: 32px;
}

.logo-badge {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--gold-brd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo.sm .logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo .lg-main {
  font-size: 30px;
}

.logo .lg-sub {
  font-size: 30px;
  color: var(--gold);
}

.logo.sm .lg-main,
.logo.sm .lg-sub {
  font-size: 23px;
}

/* ============ NAV ============ */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background .3s, padding .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}

header.nav.scrolled {
  background: rgba(23, 19, 16, .92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
  position: relative;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-dim);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 18px;
  backdrop-filter: blur(6px);
  transition: color .2s, background .2s, border-color .2s;
}

.nav-call svg {
  flex-shrink: 0;
}

.nav-call:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  display: block;
  border-radius: 1px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mm-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  background: var(--bg-1);
  border-left: 1px solid var(--border);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}

.mobile-menu.open .mm-panel {
  transform: translateX(0);
}

.mm-close {
  align-self: flex-end;
  color: var(--cream-dim);
}

.mm-links {
  display: flex;
  flex-direction: column;
}

.mm-links a {
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: .03em;
  color: var(--cream-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.mm-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mm-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-ctas .btn {
  justify-content: center;
  width: 100%;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 128px 0 70px;
  overflow: hidden;
}

@media (min-height: 950px) {
  .hero {
    min-height: auto;
  }
}

.hero-glow {
  position: absolute;
  top: 45%;
  right: 2%;
  width: 620px;
  height: 620px;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: .89;
  letter-spacing: .01em;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p.lede {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.line-mask {
  overflow: hidden;
  display: block;
}

.line-mask span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineUp .9s var(--ease) forwards;
  animation-delay: var(--ld, 0s);
}

@keyframes lineUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .line-mask span {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hstat b {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1;
}

.hstat span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-mut);
}

.hstat-div {
  width: 1px;
  height: 38px;
  background: var(--border);
}

.hero-media {
  position: relative;
  perspective: 1200px;
}

.hero-tilt {
  transition: transform .3s var(--ease);
  transform-style: preserve-3d;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--bg-2), var(--bg-3));
  animation: floaty 7s ease-in-out infinite;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .55);
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

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

.hero-frame .ph-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--cream-mut);
}

/* Shared broken-image treatment: a designed steel-plate placeholder instead of blank space */
.img-plate {
  position: relative;
  background: repeating-linear-gradient(135deg, var(--bg-2) 0 16px, var(--bg-3) 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-plate>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.img-plate::after {
  content: attr(data-fallback);
  display: none;
  position: relative;
  z-index: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-lt);
  text-align: center;
  padding: 0 16px;
  max-width: 80%;
}

.img-plate.broken::after {
  display: block;
}

.img-plate.broken>img {
  display: none;
}

/* Full menu-board photos: show the whole board instead of cropping it to fill the frame */
.img-plate.menu-shot {
  background: #0c0c0c;
}

.img-plate.menu-shot>img {
  object-fit: contain;
}

/* Two-page menu flip */
.page-flip .pg {
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.page-flip .pg2 {
  opacity: 0;
}

.page-flip[data-page="1"] .pg1 {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.page-flip[data-page="1"] .pg2 {
  opacity: 0;
  transform: translateX(3%);
  z-index: 1;
  pointer-events: none;
}

.page-flip[data-page="2"] .pg1 {
  opacity: 0;
  transform: translateX(-3%);
  z-index: 1;
  pointer-events: none;
}

.page-flip[data-page="2"] .pg2 {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.page-arrow {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 22, 26, .85);
  border: 1px solid var(--border);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), background .2s, border-color .2s;
}

.page-arrow:hover {
  background: rgba(20, 22, 26, .95);
  border-color: var(--gold-brd);
  color: var(--gold);
}

.page-flip[data-page="2"] .page-arrow {
  transform: rotate(180deg);
}

.ftag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 16px;
  background: rgba(16, 16, 16, .92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  animation: bob 5s ease-in-out infinite;
}

.ftag span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-mut);
}

.ftag strong {
  font-size: 14px;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ftag.f1 {
  top: 8%;
  right: -18px;
  animation-delay: 0s;
}

.ftag.f2 {
  bottom: 26%;
  left: -22px;
  animation-delay: .8s;
}

.ftag.f3 {
  bottom: 6%;
  right: 10%;
  animation-delay: 1.6s;
}

.pan-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: baseline;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-brd);
  background: var(--bg-1);
  max-width: 280px;
}

.pan-spec span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--steel-lt);
  text-transform: uppercase;
}

.pan-spec b {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-dim);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-mut);
}

.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--cream-mut), transparent);
  transform-origin: top;
  animation: scrl 1.7s ease-in-out infinite;
}

@keyframes scrl {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }

  55% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

/* ============ TICKER (as featured in) ============ */
.ticker-sec {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.ticker-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  margin-right: 40px;
}

.ticker-track-w {
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mut);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}

.ticker-item:hover {
  color: var(--cream);
}

/* ============ SEASONAL SPLIT ============ */
.seasonal .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.seasonal-media {
  position: relative;
}

.seasonal-media .imgbox {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 8/9;
  background: var(--bg-2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

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

.seasonal-media .page-arrow {
  left: 14px;
  right: auto;
}

.seasonal-media .page-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.seasonal-media .page-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: background .3s;
}

.seasonal-media .page-flip[data-page="1"] .page-dots .dot:first-child {
  background: var(--gold);
}

.seasonal-media .page-flip[data-page="2"] .page-dots .dot:last-child {
  background: var(--gold);
}

.seasonal-badge {
  position: absolute;
  top: -18px;
  right: 20px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.seasonal-badge span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.seasonal-badge strong {
  font-family: var(--display);
  font-size: 1.3rem;
}

/* ============ MENU GRID ============ */
.menu-sec {
  background: var(--bg-1);
  background-image: repeating-linear-gradient(115deg, rgba(180, 205, 215, .025) 0px, rgba(180, 205, 215, .025) 1px, transparent 1px, transparent 90px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}

.mcard {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
}

.mcard::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 50%, var(--ember) 100%);
  opacity: .55;
  transition: opacity .35s;
}

.mcard:hover::after {
  opacity: 1;
}

.mcard:hover {
  transform: translateY(-8px);
  border-color: var(--gold-brd);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.mcard .imgwrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--bg-3);
}

.mcard .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.mcard:hover .imgwrap img {
  transform: scale(1.08);
}

.mcard {
  cursor: pointer;
}

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

.mc-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 0 16px 16px;
  background: linear-gradient(to top, rgba(10, 13, 16, .85) 0%, transparent 55%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}

.mcard:hover .mc-overlay,
.mcard:focus-visible .mc-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mc-overlay .btn {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.mcard .imgwrap .flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(10, 13, 16, .88);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-brd);
  color: var(--gold-lt);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.mcard .body {
  padding: 20px;
}

.mcard .sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.mcard h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.mcard .loc {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mut);
}

.mcard .loc svg {
  flex-shrink: 0;
  color: var(--gold);
}

.mcard p {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}

.menu-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ CATERING & SHARED FORM ============ */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cater-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.cater-spec {
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 14px 16px;
}

.cater-spec span {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-lt);
  margin-bottom: 6px;
}

.cater-spec b {
  font-size: 15px;
}

.catering-form-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  overflow: hidden;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.role {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 16px 18px;
  flex-wrap: wrap;
}

.role b {
  font-size: 15.5px;
}

.role span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--cream-mut);
  text-transform: uppercase;
}

.careers-form-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  overflow: hidden;
}

.site-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-full {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-form input,
.site-form select,
.site-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 13px;
  border-radius: var(--radius);
  transition: border-color .2s;
  width: 100%;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: none;
  border-color: var(--gold-brd);
}

.site-form textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 13px;
  color: var(--cream-mut);
  text-align: center;
}

.form-status {
  font-family: var(--mono);
  font-size: 13px;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: var(--gold-glow);
  color: var(--gold-lt);
}

.form-status.err {
  background: var(--ember-glow);
  color: #e37b6f;
}

/* ============ PILLARS ============ */
.pillars-sec {
  position: relative;
  overflow: hidden;
}

.pillars-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 30vw;
  color: rgba(255, 255, 255, .025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
  position: relative;
}

.pillar {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), border-color .4s;
}

.pillar>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.75);
  transition: transform .6s var(--ease), filter .5s;
  z-index: 0;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--gold-brd);
}

.pillar:hover>img {
  transform: scale(1.07);
  filter: grayscale(0) brightness(.55);
}

.pillar-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 16, .95) 10%, rgba(10, 13, 16, .35) 55%, rgba(10, 13, 16, .15) 100%);
  z-index: 1;
}

.pillar-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pillar-ic {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(27, 35, 43, .7);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  transition: background .3s, transform .3s;
}

.pillar:hover .pillar-ic {
  background: var(--gold);
  color: #1b232b;
  transform: scale(1.08);
}

.pillar .spec-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.pillar h3 {
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: .03em;
  margin-bottom: 10px;
  color: var(--cream);
}

.pillar p {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.pillar-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}

.pillar:hover .pillar-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============ STORY ============ */
.story-sec {
  background: var(--bg-1);
  background-image: repeating-linear-gradient(115deg, rgba(180, 205, 215, .025) 0px, rgba(180, 205, 215, .025) 1px, transparent 1px, transparent 90px);
}

.story-sec .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.story-imgs {
  position: sticky;
  top: 108px;
}

.story-imgs .main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--bg-2);
  margin-bottom: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.story-imgs .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-imgs .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.story-imgs .grid2 .imgbox {
  border-radius: var(--radius);
  overflow: hidden;
  height: 150px;
  background: var(--bg-2);
}

.story-imgs .grid2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}

.chef-card .name {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.chef-card p {
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.75;
}

.chef-card p+p {
  margin-top: 12px;
}

.chef-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.chef-more p:first-child {
  margin-top: 12px;
}

.chef-card.expanded .chef-more {
  max-height: 600px;
}

.chef-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px -8px 0;
  padding: 10px 8px;
  min-height: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

.chef-toggle svg {
  transition: transform .3s var(--ease);
}

.chef-card.expanded .chef-toggle svg {
  transform: rotate(180deg);
}

.mission {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin-bottom: 28px;
  color: var(--cream-dim);
  font-size: 16px;
}

.mission q {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-style: normal;
}

/* ============ GALLERY: BENTO GRID + LIGHTBOX ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gitem {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  grid-column: span 1;
  grid-row: span 1;
}

.gitem.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gitem.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gitem-more {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(120deg, var(--bg-2), var(--bg-3));
  border: 1px dashed var(--gold-brd);
  color: var(--gold-lt);
  height: 88px;
  transition: background .3s, border-color .3s;
  cursor: pointer;
}

.gitem-more:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  border-style: solid;
}

.gitem-more b {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .02em;
}

.gitem-more span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream-mut);
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gitem:hover img {
  transform: scale(1.08);
}

.gitem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 35, 43, .65), transparent 45%);
  opacity: 0;
  transition: opacity .3s;
}

.gitem:hover::after {
  opacity: 1;
}

.gitem .gcap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  right: 12px;
  z-index: 1;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}

.gitem:hover .gcap {
  opacity: 1;
  transform: translateY(0);
}

.gitem .expand-ic {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(27, 35, 43, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0;
  transition: opacity .3s;
}

.gitem:hover .expand-ic {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8, 10, 12, .94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-frame {
  max-width: 900px;
  width: 100%;
}

.lb-frame img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lb-frame p {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream-dim);
  text-align: center;
  margin-top: 14px;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--cream);
}

.lb-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}

.lb-nav:hover {
  border-color: var(--gold-brd);
  color: var(--gold);
}

/* Menu-board photos: hover (desktop) or tap (touch) to see them full-size and legible */
.img-plate.zoomable {
  cursor: zoom-in;
}

.img-plate.zoomable .expand-ic {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(27, 35, 43, .8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0;
  transition: opacity .3s;
}

.img-plate.zoomable:hover .expand-ic {
  opacity: 1;
}

.menu-zoom {
  position: fixed;
  inset: 0;
  z-index: 420;
  background: rgba(6, 7, 9, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}

.menu-zoom.open {
  opacity: 1;
  pointer-events: all;
}

.menu-zoom img {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  cursor: zoom-in;
  margin: auto;
}

.menu-zoom.magnified {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 74px 16px 16px;
}

.menu-zoom.magnified img {
  max-width: none;
  max-height: none;
  width: 1500px;
  cursor: zoom-out;
  margin: 0;
}

.menu-zoom-hint {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 421;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: rgba(20, 22, 26, .85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}

.menu-zoom.open .menu-zoom-hint {
  opacity: 1;
}

.menu-zoom-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 422;
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(20, 22, 26, .85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-zoom-close:hover {
  border-color: var(--gold-brd);
  color: var(--gold);
}

.menu-zoom-arrow {
  position: fixed;
  bottom: 26px;
  right: 24px;
  z-index: 422;
  width: 48px;
  height: 48px;
  background: rgba(20, 22, 26, .9);
}

.menu-zoom-arrow.flipped {
  transform: rotate(180deg);
}

body.menu-zoom-open header.nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gitem.big {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gitem.wide {
    grid-column: span 2;
  }

  .lb-nav {
    position: absolute;
    bottom: 24px;
  }

  .lb-prev {
    left: 24px;
  }

  .lb-next {
    right: 24px;
  }
}

/* ============ COMMUNITY ============ */
.community-sec {
  position: relative;
  overflow: hidden;
}

.community-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.community-head .lede {
  margin: 0 auto 28px;
}

.press-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mut);
  min-width: 130px;
}

.press-item b {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .02em;
  color: var(--gold);
  text-transform: none;
}

.ig-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 44px 0 36px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
}

.ig-tile>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.ig-tile:hover>img {
  transform: scale(1.09);
}

.ig-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(10, 13, 16, .7);
  backdrop-filter: blur(3px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  background: linear-gradient(155deg, var(--gold), var(--ember));
  color: #1b232b;
  padding: 14px;
}

.ig-cta b {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.ig-cta span {
  font-size: 11px;
  opacity: .8;
}

.tag-cta {
  text-align: center;
}

.tag-cta p {
  color: var(--cream-dim);
  font-size: 15px;
  margin-bottom: 16px;
}

.tag-cta p b {
  color: var(--gold);
  font-weight: 600;
}

.tag-cta-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============ REVIEWS MARQUEE ============ */
.reviews-sec {
  background: var(--bg-1);
  overflow: hidden;
  background-image: repeating-linear-gradient(115deg, rgba(180, 205, 215, .025) 0px, rgba(180, 205, 215, .025) 1px, transparent 1px, transparent 90px);
}

.rating-plate {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0 auto 8px;
  max-width: 480px;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.rating-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 22px;
  transition: background .2s;
  cursor: pointer;
}

.rating-block:hover {
  background: rgba(255, 255, 255, .03);
}

.rating-block b {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.rating-block .stars-sm {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.rating-block .src {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-mut);
  margin-top: 3px;
}

.rating-div {
  width: 1px;
  background: var(--border);
}

.rev-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 8px;
}

.rev-filter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--cream-dim);
  transition: all .2s;
}

.rev-filter:hover {
  border-color: var(--gold-brd);
  color: var(--cream);
}

.rev-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1b232b;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.rcard {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .3s, transform .3s, opacity .35s, box-shadow .3s;
  opacity: 0;
  transform: translateY(16px);
}

.rcard.show {
  opacity: 1;
  transform: translateY(0);
}

.rcard.hide {
  display: none;
}

.rcard:hover {
  border-color: var(--gold-brd);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.rcard-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rcard-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  background: linear-gradient(155deg, var(--gold-lt), var(--ember));
  color: #1b232b;
}

.rcard .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rcard p {
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.rcard .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rcard .who strong {
  font-size: 15px;
}

.rcard .who span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--cream-mut);
}

/* ============ LOCATIONS ============ */
.locs-sec {
  overflow: hidden;
}

.loc-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.loc-row:last-of-type {
  border-bottom: 1px solid var(--border);
}

.loc-row.reverse {
  direction: rtl;
}

.loc-row.reverse>* {
  direction: ltr;
}

.loc-wm {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 9rem;
  color: rgba(180, 205, 215, .04);
  line-height: 1;
  pointer-events: none;
}

.loc-row.reverse .loc-wm {
  right: auto;
  left: 0;
}

.loc-media {
  position: relative;
}

.loc-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.loc-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s;
  z-index: 2;
}

.loc-frame .loc-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  filter: grayscale(.35) contrast(1.05);
  opacity: 0;
  transition: opacity .4s;
}

.loc-media:hover .loc-frame img {
  transform: scale(1.05);
}

.loc-frame.show-map img {
  opacity: 0;
  z-index: 1;
}

.loc-frame.show-map .loc-map {
  opacity: 1;
  z-index: 2;
}

.map-flip {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(27, 35, 43, .9);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 20px;
  transition: border-color .2s;
}

.map-flip:hover {
  border-color: var(--gold-brd);
  color: var(--gold);
}

.loc-media .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(27, 35, 43, .88);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 2px;
  color: var(--cream-dim);
}

.loc-media .badge.gold {
  background: var(--gold);
  color: #1b232b;
  border-color: var(--gold);
}

.status-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 35, 43, .88);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px 6px 8px;
  border-radius: 2px;
  color: var(--cream-dim);
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-mut);
  flex-shrink: 0;
}

.status-pill.open {
  color: #8fd18a;
}

.status-pill.open::before {
  background: #6fce6a;
  box-shadow: 0 0 6px #6fce6a;
}

.status-pill.closed {
  color: #e08b83;
}

.status-pill.closed::before {
  background: #e0605a;
}

.loc-info {
  position: relative;
  z-index: 1;
}

.loc-info .sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.loc-info h3 {
  font-family: var(--display);
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.loc-info .addr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--cream-dim);
  font-size: 15px;
  margin-bottom: 18px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 6px 11px 6px 9px;
  border-radius: 20px;
  font-size: 12.5px;
  color: var(--cream-dim);
}

.amen::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}

.hours-grid .row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 9px 8px;
  border-radius: 2px;
  font-size: 12.5px;
  text-align: center;
}

.hours-grid .row span:first-child {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mut);
}

.hours-grid .row.late {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--gold-brd);
}

.hours-grid .row.late span:first-child {
  color: var(--gold);
}

.lcard-note {
  color: var(--cream-dim);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.loc-info .acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.loc-compare {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 10px;
}

.lc-cell {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--border);
}

.lc-cell:nth-child(3n+1) {
  border-right: 1px solid var(--border);
}

.lc-cell:nth-child(3n+2) {
  border-right: 1px solid var(--border);
}

.lc-corner {
  background: var(--bg);
}

.lc-loc-head {
  background: var(--bg);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--cream);
  gap: 9px;
}

.lc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lc-loc-head.mutual .lc-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.lc-loc-head.stackt .lc-dot {
  background: var(--steel-lt);
}

.lc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-mut);
  gap: 9px;
  background: var(--bg);
}

.lc-cell.accent {
  color: var(--gold-lt);
  font-weight: 600;
}

.loc-compare .lc-cell:nth-child(6n+4),
.loc-compare .lc-cell:nth-child(6n+5),
.loc-compare .lc-cell:nth-child(6n+6) {
  background: var(--bg-2);
}

.loc-compare .lc-cell:last-child,
.loc-compare .lc-cell:nth-last-child(2),
.loc-compare .lc-cell:nth-last-child(3) {
  border-bottom: none;
}

/* ============ FAQ ============ */
.faq-sec .wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.faq-sec .wrap>.rv {
  position: sticky;
  top: 120px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-item.open .faq-q {
  color: var(--gold);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--cream-dim);
  font-size: 15.5px;
  line-height: 1.75;
  transition: max-height .4s var(--ease), padding-bottom .4s;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 22px;
}

/* ============ FINAL CTA ============ */
.fcta {
  background: var(--gold);
  color: #0a0a0a;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.fcta .wrap {
  max-width: 780px;
  position: relative;
}

.fcta .eyebrow {
  color: rgba(10, 10, 10, .6);
}

.fcta h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .92;
  margin-bottom: 20px;
}

.fcta p {
  font-size: 17px;
  color: rgba(10, 10, 10, .72);
  margin-bottom: 40px;
}

.fcta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer.site {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 70px 0 36px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.foot-brand p {
  color: var(--cream-dim);
  font-size: 15px;
  margin: 14px 0 20px;
}

.soc-row {
  display: flex;
  gap: 10px;
}

.soc-row a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: color .2s, border-color .2s, background .2s;
}

.soc-row a:hover {
  color: var(--gold);
  border-color: var(--gold-brd);
  background: var(--gold-glow);
}

.foot-col-t {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-mut);
  margin-bottom: 6px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-col a {
  font-size: 15px;
  color: var(--cream-dim);
  transition: color .2s;
}

.foot-col a:hover {
  color: var(--gold);
}

.foot-bot {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream-mut);
}

/* ============ STICKY MOBILE CTAS ============ */
.sticky-ctas {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.sticky-ctas.vis {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.stbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s var(--ease);
  white-space: nowrap;
}

.stbtn:hover {
  transform: translateY(-2px) scale(1.03);
}

.stbtn.call {
  background: var(--bg-1);
  border: 1px solid var(--border);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.stbtn.order {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 8px 26px var(--gold-glow);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-grid .mcard {
    flex: 0 0 calc(50% - 9px);
  }

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

  .ig-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ig-wall .ig-tile {
    flex: 0 0 calc(33.333% - 6.67px);
  }
}

@media (max-width: 980px) {
  .wrap {
    padding: 0 26px;
  }

  .section {
    padding: 56px 0;
  }

  .nav-links,
  .nav-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tags,
  .hero-ctas,
  .hero-stats {
    justify-content: center;
  }

  .hero p.lede {
    margin: 0 auto 30px;
  }

  .hero-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .ftag {
    display: none;
  }

  .seasonal .wrap,
  .story-sec .wrap,
  .faq-sec .wrap,
  .catering-grid,
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-sec .wrap>.rv {
    position: static;
  }

  .loc-row,
  .loc-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }

  .loc-wm {
    display: none;
  }

  .hours-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .hours-grid .row {
    flex: 0 0 calc(25% - 4.5px);
  }

  .loc-compare {
    grid-template-columns: 84px 1fr 1fr;
  }

  .lc-cell {
    padding: 12px 10px;
    font-size: 12.5px;
  }

  .lc-label {
    font-size: 9.5px;
  }

  .lc-loc-head {
    font-size: .95rem;
  }

  .story-imgs {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    aspect-ratio: 3/4;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillars-wm {
    font-size: 46vw;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 44px 0;
  }

  .rating-plate {
    max-width: 100%;
  }

  .rating-block {
    padding: 14px 6px;
    gap: 8px;
  }

  .rating-block b {
    font-size: 1.7rem;
  }

  .rating-block .src {
    font-size: 9px;
  }

  .rev-filter {
    padding: 12px 18px;
  }

  .menu-grid .mcard {
    flex-basis: 100%;
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .ig-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ig-wall .ig-tile {
    flex: 0 0 calc(50% - 5px);
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stats {
    gap: 16px;
  }

  .story-imgs .grid2 {
    display: none;
  }

  .stbtn span {
    display: none;
  }

  .stbtn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 400px) {
  .wrap {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .headline {
    font-size: clamp(2rem, 9vw, 3.6rem);
  }

  .fcta h2 {
    font-size: clamp(2.2rem, 13vw, 4.5rem);
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tags .tag {
    font-size: 9px;
    padding: 5px 9px;
  }
}

/* ---- Touch-device fallbacks: content that only appeared on :hover is invisible on
     touch screens (there is no hover state), so make it permanently visible instead ---- */
@media (hover: none) {
  .mc-overlay {
    opacity: 1;
    transform: none;
    pointer-events: all;
  }

  .pillar-link {
    opacity: 1;
    transform: none;
  }

  .pillar>img {
    filter: grayscale(.1) brightness(.62);
  }

  .gitem .gcap {
    opacity: 1;
    transform: none;
  }

  .gitem .expand-ic {
    opacity: 1;
  }

  .gitem::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(16, 22, 27, .75), transparent 55%);
  }
}

/* ---- Minimum touch target size (44px) for icon-only controls ---- */
@media (max-width: 980px) {

  .hamburger,
  .map-flip,
  .lb-nav,
  .lb-close,
  .expand-ic,
  .faq-q,
  .mm-close {
    min-height: 44px;
    min-width: 44px;
  }

  .expand-ic {
    width: 34px;
    height: 34px;
    top: 6px;
    right: 6px;
  }
}