@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/barlow-condensed-400.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/barlow-condensed-500.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/barlow-condensed-600.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/barlow-condensed-800.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/barlow-condensed-900.ttf") format("truetype");
}

:root {
  --black: #231f20;
  --navy: #243342;
  --steel: #5e7684;
  --white: #ffffff;
  --paper: #f4f1ec;
  --warm: #b8724c;
  --ink-muted: rgba(35, 31, 32, 0.68);
  --line: rgba(35, 31, 32, 0.16);
  --shadow: 0 24px 70px rgba(35, 31, 32, 0.18);
  --shadow-soft: 0 18px 44px rgba(35, 31, 32, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --body-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(180deg, #f7f3ed 0%, #eef2f3 48%, #f4f1ec 100%);
  font-family: "Barlow Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

p,
address,
dd {
  font-size: 1.22rem;
  font-family: var(--body-font);
  font-weight: 300;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 46px rgba(35, 31, 32, 0.12);
  color: var(--black);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 22vw, 285px);
  min-width: 170px;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light,
.site-header.nav-active .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.nav-active .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: currentColor;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a.is-active {
  color: var(--warm);
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  padding: 9px 13px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-slides,
.hero-slide,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 118, 132, 0.78), transparent);
}

.food-slide .hero-image {
  filter: saturate(0.95) contrast(1.05);
}

.sport-slide .hero-image {
  filter: saturate(0.85) contrast(1.1) brightness(0.9);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.72) 45%, rgba(8, 8, 8, 0.26) 78%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 124px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7.2vw, 6.9rem);
}

.hero h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3.2rem, 7.2vw, 6.9rem);
}

.section h2,
.page-section h2 {
  font-size: clamp(2.5rem, 5.5vw, 5.3rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button.primary {
  background: var(--warm);
  color: var(--black);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  color: var(--black);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 4vw, 56px);
  top: 50%;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.hero-controls button {
  min-width: 116px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(35, 31, 32, 0.42);
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-controls button.is-active,
.hero-controls button:hover {
  background: var(--white);
  color: var(--black);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) 0;
  scroll-margin-top: 118px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro::before,
.menus-section::before,
.food-section::before,
.whats-on::before,
.functions-section::before,
.visit::before {
  position: absolute;
  z-index: 0;
  right: max(-18px, -1.6vw);
  top: 10px;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(6rem, 13vw, 14rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.045;
}

.intro::after,
.menus-section::after,
.food-section::after,
.whats-on::after,
.functions-section::after,
.visit::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: clamp(150px, 22vw, 270px);
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.055;
  mask-image: radial-gradient(circle, transparent 54%, #000 55%, #000 62%, transparent 63%);
  -webkit-mask-image: radial-gradient(circle, transparent 54%, #000 55%, #000 62%, transparent 63%);
}

.intro::after,
.functions-section::after {
  left: clamp(18px, 7vw, 110px);
  bottom: clamp(18px, 5vw, 72px);
  color: var(--black);
}

.food-section::after,
.visit::after {
  right: clamp(18px, 8vw, 120px);
  bottom: clamp(24px, 6vw, 92px);
  color: var(--black);
}

.menus-section::after,
.whats-on::after {
  right: clamp(18px, 8vw, 120px);
  bottom: clamp(24px, 6vw, 92px);
  color: var(--white);
  opacity: 0.07;
}

.intro::before {
  content: "LOCAL";
  color: var(--black);
}

.menus-section::before {
  content: "MENUS";
  color: var(--white);
  opacity: 0.07;
}

.food-section::before {
  content: "WELCOME";
  color: var(--black);
}

.whats-on::before {
  content: "WHAT'S ON";
  color: var(--white);
  opacity: 0.06;
}

.functions-section::before {
  content: "EVENTS";
  color: var(--black);
}

.visit::before {
  content: "VISIT";
  color: var(--black);
}

.intro {
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 118, 132, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f1ec 100%);
}

.intro-grid,
.split,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.intro-copy,
.split > div > p,
.section-heading > p,
.visit address {
  margin: 0;
  color: var(--ink-muted);
}

.intro-copy {
  padding-top: 0;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.reviews-section {
  padding-top: clamp(50px, 7vw, 82px);
  padding-bottom: clamp(50px, 7vw, 82px);
  background:
    radial-gradient(circle at 8% 18%, rgba(184, 114, 76, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f1ec 0%, #ffffff 100%);
}

.reviews-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.reviews-heading h2 {
  margin-top: 8px;
}

.reviews-score {
  min-width: 154px;
  padding: 16px 18px;
  border-left: 4px solid var(--warm);
  background: rgba(255, 255, 255, 0.74);
  color: var(--black);
  box-shadow: var(--shadow-soft);
}

.reviews-score strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.reviews-score span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 32vw, 360px);
  gap: 16px;
  margin: clamp(28px, 4vw, 44px) -18px -18px;
  padding: 18px 18px 56px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-rail::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--warm);
}

.review-stars {
  color: var(--warm);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 22px 0;
}

.review-card p {
  margin: 0;
  color: var(--black);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.42;
}

.review-card cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 800;
}

.review-card cite img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.reviews-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(35, 31, 32, 0.28);
  border-radius: 50%;
  background: rgba(35, 31, 32, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.reviews-dots button:hover,
.reviews-dots button.is-active {
  border-color: var(--warm);
  background: var(--warm);
  transform: scale(1.2);
}

.split > div > h2 + p {
  margin-top: 28px;
}

.menus-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(54, 72, 84, 0.18), transparent 30%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.menus-section .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.section-copy {
  padding-top: 0;
}

.section-copy p {
  margin: 0;
}

.section-copy p + p {
  margin-top: 18px;
}

.menus-section .section-copy {
  color: rgba(255, 255, 255, 0.7);
}

.menu-downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.menu-downloads a {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.menu-downloads a:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.09);
  border-color: rgba(184, 114, 76, 0.86);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.menu-downloads a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--warm);
}

.menu-downloads a::after {
  content: "MENU";
  position: absolute;
  right: -8px;
  bottom: -8px;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
}

.menu-downloads span {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-downloads p {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.45;
}

.menu-downloads strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(184, 114, 76, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(184, 114, 76, 0.12);
  color: var(--warm);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-section {
  background:
    linear-gradient(90deg, rgba(94, 118, 132, 0.12), transparent 44%),
    linear-gradient(180deg, #f4f1ec 0%, #eef2f3 100%);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.tile-grid article,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-list article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px 18px;
  padding: 24px;
}

.feature-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--steel);
}

.feature-list span {
  grid-row: span 2;
  color: var(--steel);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-list p,
.tile-grid p,
.hours-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-transform: uppercase;
  transition: color 180ms ease, text-underline-offset 180ms ease;
}

.text-link:hover {
  color: var(--steel);
  text-underline-offset: 9px;
}

.whats-on {
  background:
    radial-gradient(circle at 12% 14%, rgba(54, 72, 84, 0.18), transparent 30%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.whats-on .section-kicker {
  color: var(--warm);
}

.section-heading {
  max-width: 920px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.tile-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tile-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 178, 109, 0.58);
  background: rgba(255, 255, 255, 0.11);
}

.tile-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--warm);
  opacity: 0.9;
}

.tile-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.functions-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(94, 118, 132, 0.14), transparent 28%),
    linear-gradient(180deg, #f4f1ec 0%, #e9eef0 100%);
}

.functions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.functions-content {
  padding-top: 0;
  color: var(--ink-muted);
}

.functions-content p {
  margin: 0;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.occasion-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.functions-content .button {
  margin-top: 30px;
}

.visit {
  padding: clamp(44px, 6vw, 78px) 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(54, 72, 84, 0.2), transparent 30%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.visit-grid {
  align-items: center;
}

.visit address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  margin-top: 28px;
}

.visit .button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.hours-panel {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.visit .hours-panel p,
.visit .hours-panel .note {
  color: rgba(255, 255, 255, 0.72);
}

.note.strong {
  color: var(--white);
  font-weight: 800;
  margin-top: 18px;
}

.hours-list {
  margin: 22px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hours-list dt {
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.facebook-section {
  padding: clamp(46px, 6vw, 78px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 114, 76, 0.1), transparent 28%),
    linear-gradient(180deg, #f4f1ec 0%, #eef2f3 100%);
}

.facebook-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 500px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.facebook-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-muted);
}

.facebook-copy .button {
  margin-top: 30px;
}

.facebook-frame-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.facebook-frame-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  background: var(--warm);
}

.facebook-frame-card iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.facebook-consent-note {
  display: grid;
  place-content: center;
  min-height: 620px;
  padding: clamp(26px, 4vw, 46px);
  text-align: left;
}

.facebook-consent-note h3 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.facebook-consent-note p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-muted);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--warm);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.cookie-notice {
  position: fixed;
  z-index: 60;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  left: clamp(14px, 3vw, 34px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-notice-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(920px, 100%);
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--black);
  pointer-events: auto;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.cookie-notice h2 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.cookie-notice p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.cookie-notice .consent-actions {
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 0;
  width: min(320px, 100%);
}

.cookie-notice .button {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.cookie-notice .button.primary {
  color: var(--white);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 76px) 0 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(184, 114, 76, 0.13), transparent 30%),
    radial-gradient(circle at 12% 12%, rgba(94, 118, 132, 0.16), transparent 34%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--warm);
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.footer-brand img {
  width: min(235px, 72vw);
}

.footer-brand p,
.footer-bottom p {
  margin: 18px 0 0;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 52px);
}

.footer-nav h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav a {
  display: table;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-cookie-button {
  display: table;
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-bottom a:hover,
.footer-cookie-button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  max-width: none;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--warm);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 124px 0 92px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 48%, rgba(8, 8, 8, 0.48) 100%),
    url("images/black-lion-pub-hero.webp") center / cover,
    var(--black);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 118, 132, 0.8), transparent);
}

.whats-on-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.78) 42%, rgba(8, 8, 8, 0.3) 76%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.26) 0%, rgba(8, 8, 8, 0.72) 100%),
    url("images/whats-on-football-hero.webp") center / cover,
    var(--black);
}

.policy-hero {
  min-height: 52svh;
  align-items: center;
  padding: 104px 0 64px;
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 114, 76, 0.16), transparent 28%),
    radial-gradient(circle at 16% 14%, rgba(94, 118, 132, 0.22), transparent 32%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.page-hero.policy-hero .page-hero-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.page-hero.policy-hero h1 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.page-hero.policy-hero .page-hero-copy {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero.policy-hero .hero-actions {
  justify-content: center;
}

.policy-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(94, 118, 132, 0.12), transparent 32%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f1ec 100%);
}

.policy-content {
  max-width: 820px;
}

.policy-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p {
  margin: 0;
  color: var(--ink-muted);
}

.policy-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.policy-updated {
  margin-bottom: 30px;
  color: var(--warm);
  font-weight: 800;
  text-transform: uppercase;
}

.visit-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.76) 44%, rgba(8, 8, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.72) 100%),
    url("images/black-lion-beer-garden-hero.webp") center / cover,
    var(--black);
}

.food-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.78) 46%, rgba(8, 8, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.68) 100%),
    url("images/black-lion-gammon-food-hero.webp") center / cover,
    var(--black);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 84% 12%, rgba(94, 118, 132, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f1ec 100%);
}

.visit-contact-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(94, 118, 132, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfaf7 0%, #f1eee8 100%);
}

.visit-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.visit-contact-section address {
  color: var(--ink);
}

.visit-contact-photo {
  position: relative;
  min-height: clamp(300px, 32vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.14);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.visit-contact-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-contact-section .hours-panel {
  grid-column: 1 / -1;
  border-color: rgba(35, 31, 32, 0.18);
  background:
    linear-gradient(145deg, rgba(7, 7, 7, 0.94) 0%, rgba(17, 24, 29, 0.96) 58%, rgba(24, 36, 43, 0.96) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.visit-contact-section .hours-panel h3 {
  color: var(--white);
}

.visit-contact-section .hours-panel p,
.visit-contact-section .hours-panel .note {
  color: rgba(255, 255, 255, 0.72);
}

.visit-contact-section .hours-list div {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.visit-contact-section .hours-list dt {
  color: rgba(255, 255, 255, 0.9);
}

.visit-contact-section .hours-list dd {
  color: rgba(255, 255, 255, 0.86);
}

.visit-contact-section .note.strong {
  color: var(--white);
}

.map-section {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 114, 76, 0.1), transparent 30%),
    linear-gradient(180deg, #f1eee8 0%, #ffffff 100%);
}

.map-section .section-heading {
  max-width: 820px;
}

.map-section .section-heading p {
  max-width: 680px;
}

.map-frame {
  position: relative;
  min-height: clamp(300px, 38vw, 430px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(35, 31, 32, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 114, 76, 0.18), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(94, 118, 132, 0.22), transparent 34%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  box-shadow: 0 30px 70px rgba(35, 31, 32, 0.18);
  overflow: hidden;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: var(--warm);
  pointer-events: none;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, transparent 32%, rgba(8, 8, 8, 0.1) 100%),
    radial-gradient(circle at 12% 18%, rgba(184, 114, 76, 0.14), transparent 30%);
  pointer-events: none;
}

.map-link-card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
}

.map-link-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-link-card h3 {
  max-width: 540px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.map-link-card p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.map-link-card .button {
  margin-top: 26px;
}

.static-map-link {
  position: relative;
  z-index: 2;
  display: block;
  min-height: clamp(250px, 30vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #fbfaf7;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.static-map-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
}

.static-map-link img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.page-section.alt {
  background:
    linear-gradient(135deg, rgba(94, 118, 132, 0.14), transparent 38%),
    linear-gradient(180deg, #f4f1ec 0%, #e9eef0 100%);
}

.page-section.dark {
  background:
    radial-gradient(circle at 12% 16%, rgba(54, 72, 84, 0.18), transparent 30%),
    linear-gradient(145deg, #070707 0%, #11181d 58%, #18242b 100%);
  color: var(--white);
}

.page-section.dark.food-menu-section {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.78) 44%, rgba(8, 8, 8, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18) 0%, rgba(8, 8, 8, 0.78) 100%),
    url("images/black-lion-fish-chips-menu-bg.webp") center / cover no-repeat,
    #070707;
}

.page-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.reverse-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.reverse-grid .event-copy {
  grid-column: 2;
  grid-row: 1;
}

.reverse-grid .event-panel {
  grid-column: 1;
  grid-row: 1;
}

.page-copy {
  padding-top: 0;
}

.page-copy p {
  margin: 0;
  color: var(--ink-muted);
}

.page-copy p + p {
  margin-top: 18px;
}

.page-copy .button {
  margin-top: 28px;
}

.dark .page-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.dark .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.event-feature {
  padding: clamp(56px, 7vw, 92px) 0;
}

.event-feature .page-grid,
.special-events-section .page-grid {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: center;
}

.event-feature .reverse-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.special-events-section .reverse-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.event-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink-muted);
}

.event-copy p + p {
  margin-top: 18px;
}

.dark .event-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.event-copy .button {
  margin-top: 28px;
}

.event-panel,
.event-board {
  position: relative;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.event-panel > *,
.event-board > * {
  position: relative;
  z-index: 1;
}

.event-panel::before,
.event-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--warm);
}

.icon-panel::after {
  content: "";
  position: absolute;
  top: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
  width: clamp(42px, 5vw, 66px);
  height: clamp(42px, 5vw, 66px);
  background: var(--warm);
  opacity: 0.14;
  pointer-events: none;
  -webkit-mask: var(--event-icon) center / contain no-repeat;
  mask: var(--event-icon) center / contain no-repeat;
}

.sport-panel {
  --event-icon: url("images/icon-football.svg");
}

.entertainment-panel {
  --event-icon: url("images/icon-microphone.webp");
}

.games-panel {
  --event-icon: url("images/icon-target.svg");
}

.event-panel h3,
.event-board h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.light-panel {
  border-color: rgba(35, 31, 32, 0.12);
  background:
    linear-gradient(135deg, rgba(94, 118, 132, 0.13), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.light-panel h3 {
  color: var(--black);
}

.event-label {
  display: inline-flex;
  color: var(--warm);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.event-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
}

.light-panel .event-list li {
  color: var(--ink-muted);
}

.sport-feature .event-list li::before {
  content: "";
  top: 0.45em;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--warm);
  -webkit-mask: url("images/icon-football.svg") center / contain no-repeat;
  mask: url("images/icon-football.svg") center / contain no-repeat;
}

.entertainment-feature .event-list li::before,
.games-section .event-list li::before {
  content: "";
  top: 0.45em;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--warm);
}

.entertainment-feature .event-list li::before {
  -webkit-mask: url("images/icon-microphone.webp") center / contain no-repeat;
  mask: url("images/icon-microphone.webp") center / contain no-repeat;
}

.games-section .event-list li::before {
  -webkit-mask: url("images/icon-target.svg") center / contain no-repeat;
  mask: url("images/icon-target.svg") center / contain no-repeat;
}

.games-section .section-heading {
  max-width: 760px;
}

.special-events-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(184, 114, 76, 0.16), transparent 28%),
    radial-gradient(circle at 16% 12%, rgba(54, 72, 84, 0.2), transparent 30%),
    linear-gradient(145deg, #070707 0%, #11181d 56%, #18242b 100%);
}

.callout-panel.event-board {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 28px 0 0;
}

.event-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px 5px 12px;
  border-left: 3px solid var(--warm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--warm);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dark .event-board p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-section {
  padding: clamp(48px, 6vw, 76px) 0;
}

.cta-section .page-copy {
  padding-top: 0;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.detail-card,
.callout-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.detail-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--warm);
}

.detail-card p {
  margin: 0;
  color: var(--ink-muted);
}

.dark .detail-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark .detail-card p {
  color: rgba(255, 255, 255, 0.72);
}

.callout-panel {
  padding: clamp(24px, 4vw, 38px);
}

.callout-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.callout-panel p + p,
.callout-panel .button {
  margin-top: 20px;
}

.menu-page-downloads {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.menu-page-downloads a {
  min-height: 150px;
}

.page-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.64);
  font-family: var(--body-font);
  font-size: 1.08rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: 168px;
    min-width: 150px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 1px solid currentColor;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: currentColor;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
    padding: 16px 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--black);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 14px;
    font-size: 1.1rem;
    text-align: center;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    min-height: 92svh;
  }

  .page-hero {
    min-height: 92svh;
  }

  .policy-hero {
    min-height: 48svh;
    padding: 104px 0 58px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(35, 31, 32, 0.24) 0%, rgba(35, 31, 32, 0.78) 52%, rgba(35, 31, 32, 0.96) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 118px 0 164px;
  }

  .page-hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .page-hero.policy-hero .page-hero-content {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-controls {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transform: none;
  }

  .hero-controls button {
    min-width: 0;
    text-align: center;
  }

  .intro-grid,
  .split,
  .visit-grid,
  .facebook-grid,
  .visit-contact-layout,
  .functions-grid,
  .menus-section .section-heading,
  .page-grid,
  .event-feature .page-grid,
  .event-feature .reverse-grid,
  .special-events-section .page-grid,
  .special-events-section .reverse-grid,
  .menu-downloads,
  .tile-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-score {
    width: min(100%, 260px);
  }

  .reviews-rail {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .visit-contact-photo {
    min-height: clamp(260px, 56vw, 420px);
  }

  .facebook-grid {
    align-items: start;
  }

  .cookie-notice-panel {
    grid-template-columns: 1fr;
  }

  .cookie-notice .consent-actions {
    justify-content: flex-start;
  }

  .map-frame {
    grid-template-columns: 1fr;
  }

  .static-map-link {
    min-height: clamp(230px, 58vw, 340px);
  }

  .tile-grid article {
    min-height: 150px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-copy {
    padding-top: 0;
  }

  .reverse-grid .event-copy,
  .reverse-grid .event-panel {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.9rem);
  }

  .hero h2 {
    font-size: clamp(2.15rem, 9.2vw, 2.9rem);
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .page-hero.policy-hero h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .section h2,
  .page-section h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .brand {
    width: 142px;
    min-width: 130px;
  }

  .hero-actions,
  .contact-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .facebook-consent-note {
    min-height: 540px;
  }

  .facebook-consent-note .button,
  .cookie-notice .button {
    justify-content: center;
  }

  .hero-controls {
    bottom: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-controls button {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list span {
    grid-row: auto;
  }

  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }
}
