:root {
  --red: #b7181c;
  --red-dark: #8f0f13;
  --black: #141414;
  --ink: #24211f;
  --muted: #665f5a;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --line: #e6ddd2;
  --gold: #e8aa25;
  --shadow: 0 20px 50px rgba(30, 22, 16, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; padding: 10px 14px; background: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.official-bar { background: var(--black); color: white; font-size: .86rem; }
.official-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.official-inner a { color: #ffd46b; font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,253,249,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(230,221,210,.8); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo { display: block; width: clamp(180px, 15vw, 205px); height: auto; object-fit: contain; object-position: left center; }
.brand-footer { width: fit-content; max-width: 100%; padding: 9px 12px; background: white; border-radius: 12px; }
.brand-footer .brand-logo { width: min(280px, 100%); }
.site-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--black); margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--red); color: white; font-weight: 850; letter-spacing: .01em; box-shadow: 0 10px 24px rgba(183,24,28,.22); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 13px 28px rgba(183,24,28,.27); }
.button-small { min-height: 44px; padding-inline: 20px; }
.button-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--black); box-shadow: none; }
.button-ghost:hover { color: white; background: var(--black); box-shadow: none; }
.button-light { background: white; color: var(--red); box-shadow: none; }
.button-light:hover { background: var(--cream); color: var(--red-dark); }
.text-link { color: var(--red); font-weight: 850; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 98px;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(183,24,28,.34), transparent 29%),
    radial-gradient(circle at 12% 88%, rgba(232,170,37,.11), transparent 28%),
    linear-gradient(135deg, #0d0d0d 0%, #171310 50%, #25110f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(255,255,255,.06) 25%, rgba(255,255,255,.06) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.06) 75%, rgba(255,255,255,.06) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(255,255,255,.04) 25%, rgba(255,255,255,.04) 26%, transparent 27%, transparent 74%, rgba(255,255,255,.04) 75%, rgba(255,255,255,.04) 76%, transparent 77%);
  background-size: 72px 126px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(183,24,28,.045), 0 0 0 140px rgba(232,170,37,.028);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
}
.hero-copy { position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 108px;
  width: 4px;
  height: 130px;
  border-radius: 99px;
  background: linear-gradient(var(--gold), var(--red));
}
.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.hero-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #f8dfac;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero .eyebrow { color: #f0bb54; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fffdf7;
  font-size: clamp(3.25rem, 6.35vw, 6rem);
  line-height: .94;
  letter-spacing: -.06em;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0,0,0,.38);
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #f7cf76 0%, #ff8b65 48%, #ef3f43 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #d8cfca;
  font-size: 1.13rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .button {
  min-height: 56px;
  padding-inline: 29px;
  box-shadow: 0 16px 34px rgba(183,24,28,.34);
}
.hero .button-ghost {
  color: white;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
}
.hero .button-ghost:hover { color: var(--black); background: white; }
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 31px;
  color: #c9c0ba;
  font-size: .87rem;
  font-weight: 750;
}
.quick-facts span::before { content: "✓"; margin-right: 7px; color: #f0bb54; font-weight: 950; }
.hero-visual {
  position: relative;
  padding: 14px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 38px 38px 38px 104px;
  background: linear-gradient(135deg, rgba(255,255,255,.30), rgba(232,170,37,.45) 46%, rgba(183,24,28,.68));
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border-radius: 29px 29px 29px 88px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
}
.hero-visual > img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 28px 28px 28px 88px;
  filter: saturate(1.04) contrast(1.02);
}
.hero-stamp {
  position: absolute;
  left: -26px;
  bottom: -24px;
  z-index: 4;
  width: 158px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: white;
  background: linear-gradient(145deg, #1a1a1a, #080808);
  border: 6px solid white;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0,0,0,.4), 0 0 0 5px rgba(232,170,37,.4);
  transform: rotate(-7deg);
}
.hero-stamp span, .hero-stamp small { font-size: .62rem; font-weight: 850; letter-spacing: .12em; }
.hero-stamp strong { color: #ffcf58; font-size: 1.68rem; line-height: 1.05; }
.hero-rating {
  position: absolute;
  right: -18px;
  top: 40px;
  z-index: 4;
  min-width: 132px;
  padding: 13px 16px 12px;
  display: grid;
  justify-items: center;
  color: #17110f;
  background: rgba(255,253,247,.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.hero-rating strong { font-size: 1.65rem; line-height: 1; letter-spacing: -.04em; }
.hero-rating span { margin-top: 3px; color: #e5a91f; font-size: .72rem; letter-spacing: .03em; }
.hero-rating small { margin-top: 2px; color: #6a5f59; font-size: .58rem; font-weight: 900; letter-spacing: .13em; }

.trust-strip { color: white; background: var(--black); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { padding: 23px 30px; display: flex; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid small { color: #bdb6af; font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.trust-grid strong { font-size: 1.03rem; }

.section { padding: 96px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.045em; }
.food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.food-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(35,26,18,.07); transition: transform .22s ease, box-shadow .22s ease; }
.food-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(35,26,18,.12); }
.food-card img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; }
.food-card-body { padding: 22px; }
.food-card h3 { margin: 8px 0 8px; font-size: 1.22rem; line-height: 1.2; }
.food-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.tag { display: inline-flex; padding: 5px 9px; border-radius: 999px; color: var(--red); background: #fae9e6; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }

.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.story-image-wrap { position: relative; }
.story-image-wrap::after { content: ""; position: absolute; inset: 24px -18px -18px 24px; z-index: 0; border: 3px solid var(--red); border-radius: 26px; }
.story-image-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }
.story-links { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }

.visit { background: white; }
.visit-grid { display: grid; grid-template-columns: .86fr 1.14fr; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.visit-card { padding: 52px; }
.visit-card address { margin-top: 25px; font-style: normal; font-size: 1.05rem; }
.visit-details { margin-top: 30px; display: grid; gap: 18px; }
.visit-details > div { display: flex; flex-direction: column; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.visit-details small { color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.visit-details a, .visit-details strong { font-size: 1.04rem; font-weight: 800; }
.visit-details span { color: var(--muted); font-size: .82rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.map-wrap { min-height: 600px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: saturate(.9) contrast(.98); }

.order-banner { padding: 70px 0; color: white; background: var(--red); }
.order-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.order-banner .eyebrow { color: #ffd46b; }
.order-banner h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.order-banner p:not(.eyebrow) { margin-bottom: 0; color: #ffe8e3; }

.site-footer { padding: 70px 0 24px; color: #ddd8d3; background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-grid p { color: #aaa39c; }
.footer-grid h3 { margin: 0 0 12px; color: white; font-size: .95rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #8f8983; border-top: 1px solid #302e2b; font-size: .8rem; }
.mobile-order { display: none; }

@media (max-width: 980px) {
  .site-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(0,0,0,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 0; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-copy::before { display: none; }
  .hero-visual { max-width: 790px; margin-inline: auto; }
  .hero-stamp { left: 4px; }
  .hero-rating { right: 0; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 420px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .official-inner { justify-content: center; text-align: center; }
  .official-inner span { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand-logo { width: 170px; }
  .site-nav { top: 72px; }
  .hero { padding: 58px 0 72px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.45rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-visual { padding: 9px; }
  .hero-visual::before { border-radius: 27px 27px 27px 67px; }
  .hero-visual::after { inset: 9px; border-radius: 20px 20px 20px 54px; }
  .hero-visual > img { border-radius: 19px 19px 19px 53px; }
  .hero-stamp { width: 118px; left: 4px; bottom: -22px; border-width: 4px; }
  .hero-rating { min-width: 108px; right: -2px; top: 22px; padding: 10px 12px; }
  .hero-rating strong { font-size: 1.35rem; }
  .hero-kicker { gap: 6px; }
  .hero-kicker span { font-size: .6rem; padding-inline: 9px; }
  .hero-stamp strong { font-size: 1.3rem; }
  .trust-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-grid > div { padding: 13px 10px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card { display: grid; grid-template-columns: 42% 58%; }
  .food-card img { height: 100%; aspect-ratio: auto; }
  .food-card-body { padding: 17px; }
  .story-grid { gap: 45px; }
  .visit-card { padding: 34px 24px; }
  .order-banner-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 68px; }
  .mobile-order { position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 120; display: flex; align-items: center; justify-content: center; min-height: 54px; color: white; background: var(--red); border: 2px solid white; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.3); font-weight: 900; }
}

@media (max-width: 440px) {
  .food-card { grid-template-columns: 1fr; }
  .food-card img { aspect-ratio: 1.4 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Clickable recognition and menu gallery enhancements */
.hero-kicker a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  color: #f8dfac;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.hero-kicker a:hover,
.hero-kicker a:focus-visible {
  color: #fff;
  background: rgba(183,24,28,.55);
  border-color: rgba(255,207,88,.65);
  transform: translateY(-2px);
}
.hero-stamp,
.hero-rating { text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.hero-stamp:hover,
.hero-stamp:focus-visible { transform: rotate(-4deg) scale(1.05); box-shadow: 0 24px 48px rgba(0,0,0,.48), 0 0 0 6px rgba(232,170,37,.55); }
.hero-rating:hover,
.hero-rating:focus-visible { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 48px rgba(0,0,0,.3); }

.trust-strip {
  padding: 22px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(183,24,28,.38), transparent 32%),
    linear-gradient(115deg, #0d0b0a, #1c1714 55%, #0b0908);
}
.trust-grid { gap: 16px; }
.recognition-card {
  position: relative;
  min-height: 112px;
  padding: 19px 20px;
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 18px 34px rgba(0,0,0,.2);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.recognition-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--gold), var(--red));
}
.recognition-card:hover,
.recognition-card:focus-visible {
  color: white;
  transform: translateY(-5px);
  border-color: rgba(255,207,88,.7);
  background: linear-gradient(145deg, rgba(183,24,28,.35), rgba(255,255,255,.06));
  box-shadow: 0 24px 44px rgba(0,0,0,.32);
}
.recognition-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #17110f;
  background: linear-gradient(145deg, #ffe08a, #e9a827);
  border-radius: 16px;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 20px rgba(0,0,0,.2);
}
.recognition-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 2px; }
.trust-grid .recognition-copy small { color: #e9c46b; font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.trust-grid .recognition-copy strong { font-size: clamp(1.02rem, 1.65vw, 1.28rem); line-height: 1.15; }
.recognition-copy > span { color: #c7c0ba; font-size: .78rem; }
.recognition-arrow { color: #f4c65f; font-size: 1.5rem; transition: transform .2s ease; }
.recognition-card:hover .recognition-arrow { transform: translate(3px,-3px); }

.menu-gallery {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(183,24,28,.24), transparent 32%),
    radial-gradient(circle at 4% 90%, rgba(232,170,37,.15), transparent 30%),
    #151210;
}
.menu-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: linear-gradient(45deg, transparent 48%, rgba(255,255,255,.2) 49%, transparent 51%);
  background-size: 34px 34px;
}
.menu-gallery .container { position: relative; z-index: 1; }
.menu-gallery .eyebrow { color: #f3bd55; }
.menu-gallery h2 { color: white; }
.gallery-heading { margin-bottom: 28px; }
.gallery-intro { max-width: 680px; margin: 14px 0 0; color: #c7c0ba; font-size: 1rem; }
.menu-gallery .text-link { color: #ffd267; }
.gallery-shell { position: relative; }
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31.5%);
  gap: 20px;
  padding: 12px 58px 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:focus-visible { outline: 3px solid #f4c65f; outline-offset: 7px; border-radius: 18px; }
.gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(150deg, #29231f, #171310);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(0,0,0,.32);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.gallery-card:hover { transform: translateY(-7px); border-color: rgba(244,198,95,.58); box-shadow: 0 28px 50px rgba(0,0,0,.42); }
.gallery-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.11), transparent 60%),
    linear-gradient(145deg, #24201d, #0e0c0b);
}
.gallery-image img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(0,0,0,.42)); transition: transform .3s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card-body {
  position: relative;
  min-height: 98px;
  padding: 17px 58px 17px 19px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.gallery-category { display: block; color: #efba50; font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.gallery-card h3 { margin: 6px 0 0; color: white; font-size: 1.05rem; line-height: 1.2; }
.gallery-count { position: absolute; right: 18px; top: 20px; color: rgba(255,255,255,.28); font-size: 1.55rem; font-weight: 950; letter-spacing: -.06em; }
.gallery-arrow {
  position: absolute;
  top: 43%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0 0 5px;
  color: #17110f;
  background: linear-gradient(145deg, #fff2bd, #e7a521);
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0,0,0,.38);
  font: 900 2.2rem/1 Arial, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.gallery-arrow:hover:not(:disabled),
.gallery-arrow:focus-visible:not(:disabled) { transform: translateY(-2px) scale(1.08); box-shadow: 0 20px 36px rgba(0,0,0,.46); }
.gallery-arrow:disabled { opacity: .28; cursor: default; }
.gallery-prev { left: 0; }
.gallery-next { right: 0; }
.gallery-help { display: flex; justify-content: center; gap: 10px; color: #918983; font-size: .8rem; font-weight: 750; letter-spacing: .04em; }
.gallery-help span { color: #efba50; }

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr; }
  .recognition-card { min-height: 94px; }
  .gallery-track { grid-auto-columns: minmax(300px, 47%); }
}
@media (max-width: 700px) {
  .hero-kicker a { font-size: .58rem; padding-inline: 9px; }
  .trust-strip { padding: 14px 0; }
  .trust-grid { gap: 10px; padding: 0; }
  .recognition-card { min-height: 86px; padding: 13px 14px; grid-template-columns: 45px 1fr 22px; gap: 11px; border-radius: 16px; }
  .recognition-icon { width: 45px; height: 45px; border-radius: 13px; font-size: 1.05rem; }
  .recognition-copy > span { display: none; }
  .gallery-heading { margin-bottom: 18px; }
  .gallery-track { grid-auto-columns: 84%; gap: 14px; padding: 8px 28px 24px; }
  .gallery-arrow { top: 42%; width: 44px; height: 44px; font-size: 1.9rem; }
  .gallery-prev { left: -6px; }
  .gallery-next { right: -6px; }
  .gallery-card-body { min-height: 88px; }
}

/* Restaurant photo and video gallery */
.restaurant-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(183,24,28,.10), transparent 32%),
    radial-gradient(circle at 88% 92%, rgba(244,198,95,.14), transparent 30%),
    #f7f3ec;
}
.restaurant-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(135deg, rgba(0,0,0,.035) 25%, transparent 25%), linear-gradient(225deg, rgba(0,0,0,.035) 25%, transparent 25%);
  background-size: 44px 44px;
}
.restaurant-media .container { position: relative; z-index: 1; }
.media-heading { align-items: flex-end; margin-bottom: 38px; }
.media-intro { max-width: 760px; margin: 14px 0 0; color: #665f59; font-size: 1.02rem; line-height: 1.7; }
.media-group + .media-group { margin-top: 54px; }
.media-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.media-group-heading h3 { margin: 6px 0 0; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.media-label { color: var(--red); font-size: .7rem; font-weight: 950; letter-spacing: .15em; }
.media-inline-controls { display: flex; gap: 10px; }
.media-control {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(25,19,17,.18);
  border-radius: 50%;
  background: white;
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(35,25,20,.10);
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.media-control:hover:not(:disabled),
.media-control:focus-visible:not(:disabled) { transform: translateY(-2px); background: var(--red); color: white; }
.media-control:disabled { opacity: .28; cursor: default; box-shadow: none; }
.media-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 48%);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 8px 4px 24px;
}
.media-track::-webkit-scrollbar { display: none; }
.media-track:focus-visible { outline: 3px solid var(--red); outline-offset: 7px; border-radius: 20px; }
.media-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(32,23,20,.11);
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 44px rgba(45,31,25,.13);
}
.photo-card { margin: 0; }
.media-photo-open {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 470px);
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #171413;
  cursor: zoom-in;
}
.media-photo-open img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.portrait-card .media-photo-open img { object-position: center 52%; }
.media-photo-open:hover img,
.media-photo-open:focus-visible img { transform: scale(1.035); filter: brightness(.87); }
.media-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: white;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.media-photo-open:hover .media-zoom,
.media-photo-open:focus-visible .media-zoom { opacity: 1; transform: translateY(0); }
.photo-card figcaption { display: flex; flex-direction: column; gap: 5px; padding: 20px 22px 23px; }
.photo-card figcaption span,
.video-card-copy span { color: var(--red); font-size: .68rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.photo-card figcaption strong { font-size: 1.08rem; }
.video-track { grid-auto-columns: minmax(380px, 48%); }
.video-card { background: #171413; border-color: rgba(255,255,255,.08); color: white; }
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #080706;
}
.video-card-copy { padding: 18px 21px 22px; }
.video-card-copy span { color: #efba50; }
.video-card-copy h4 { margin: 6px 0 0; color: white; font-size: 1.08rem; }
.photo-viewer {
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #0e0c0b;
  color: white;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.photo-viewer::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.photo-viewer img { display: block; width: 100%; max-height: 80vh; object-fit: contain; background: #0e0c0b; }
.photo-viewer p { margin: 0; padding: 15px 62px 17px 20px; color: #e8dfd8; font-weight: 750; }
.photo-viewer-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(0,0,0,.68);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 820px) {
  .media-heading, .media-group-heading { align-items: flex-start; }
  .media-group-heading { gap: 12px; }
  .media-track, .video-track { grid-auto-columns: 84%; gap: 15px; }
  .media-photo-open { height: 360px; }
  .media-control { width: 43px; height: 43px; }
}
@media (max-width: 560px) {
  .media-heading { margin-bottom: 28px; }
  .media-group + .media-group { margin-top: 42px; }
  .media-track, .video-track { grid-auto-columns: 92%; }
  .media-photo-open { height: 320px; }
  .media-inline-controls { gap: 6px; }
  .media-control { width: 40px; height: 40px; font-size: 1.7rem; }
  .photo-viewer { width: 96vw; }
}
