:root {
  --black: #050505;
  --ink: #142126;
  --ink-soft: #26353a;
  --muted: #627276;
  --white: #ffffff;
  --foam: #f5fbfa;
  --sea: #0a6976;
  --teal: #0f8b8d;
  --aqua: #35c5c0;
  --sand: #eadbc2;
  --sand-soft: #f4ead8;
  --wood: #7a5738;
  --fire: #d9431f;
  --ember: #f0a126;
  --line: #d7e3e1;
  --shadow: 0 18px 50px rgba(5, 5, 5, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header-height: 78px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--teal);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(53, 197, 192, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.logo-frame {
  display: block;
  width: clamp(172px, 25vw, 274px);
  max-height: 58px;
  overflow: hidden;
}

.logo-frame img {
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(7px);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  background: var(--white);
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  background: var(--white);
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

.nav-open .site-nav {
  transform: translateY(0);
}

.site-nav a {
  display: block;
  padding: 0.85rem 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  color: var(--black);
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--fire);
}

.btn-primary:hover {
  color: var(--white);
  background: #b93619;
}

.btn-secondary {
  color: var(--white);
  background: var(--sea);
}

.btn-secondary:hover {
  color: var(--white);
  background: #075966;
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.54);
}

.btn-outline:hover {
  color: var(--black);
  background: var(--white);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--black);
  background: var(--sand-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88vh, 820px);
  color: var(--white);
  overflow: hidden;
  background: var(--hero-image, url("../images/sammy-gs-waterfront.png")) center / cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0.46) 36%, rgba(5, 5, 5, 0.12) 68%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.34));
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 7rem;
  content: "";
  background: linear-gradient(180deg, rgba(245, 251, 250, 0), var(--foam));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: var(--max);
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(5.5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 2rem);
}

.hero-main {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.8rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 660px;
  margin: 1.25rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 700;
}

.hero .hero-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.38rem 0.7rem;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid rgba(53, 197, 192, 0.45);
  border-radius: 999px;
}

.hero .hero-subcopy {
  max-width: 620px;
  margin-block: 1rem 1.35rem;
}

.hero-actions .btn {
  min-width: 142px;
}

.hero-today-card {
  width: min(100%, 390px);
  padding: clamp(1rem, 3vw, 1.45rem);
  color: var(--white);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(5, 5, 5, 0.32);
  backdrop-filter: blur(10px);
}

.hero-today-card span {
  display: block;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-today-card h2 {
  margin: 0.35rem 0 0.55rem;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .hero-today-card p {
  max-width: none;
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 850;
}

.hero-info-grid {
  display: grid;
  gap: 0.7rem;
  padding: 0.82rem;
  color: var(--white);
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(10px);
}

.quick-info {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 1rem;
}

.quick-info-grid {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-info-item {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.quick-info-item strong {
  display: block;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.notice {
  display: none;
  margin-top: 1.5rem;
  color: var(--black);
  background: var(--sand-soft);
  border: 1px solid #e3cfaa;
  border-radius: var(--radius);
}

.notice.is-visible {
  display: block;
}

.notice-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
}

.notice p {
  margin: 0;
  font-weight: 800;
}

.notice button {
  padding: 0.45rem 0.7rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 900;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section-tight {
  padding-block: 2.8rem;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, #073e4a, #0f7a80);
}

.locals-social-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 161, 38, 0.18), transparent 28%),
    linear-gradient(135deg, #08384a 0%, #0a6670 52%, #11333d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.section-sand {
  background: var(--sand-soft);
}

.section-head {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head-wide {
  max-width: 100%;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 600;
}

.section-dark .section-head p,
.section-blue .section-head p,
.section-dark .lead,
.section-blue .lead {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-content {
  padding: 1.1rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.weekly-specials-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
}

.special-poster-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.1);
}

.special-poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--black);
}

.special-poster-card .card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.9rem;
}

.special-poster-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.special-poster-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.vendor-artwork .artwork-logo-card {
  display: grid;
  align-content: start;
}

.vendor-artwork .vendor-artwork-hero {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.66) 43%, rgba(5, 5, 5, 0.24) 100%),
    radial-gradient(circle at 18% 74%, rgba(231, 71, 35, 0.36), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(15, 122, 128, 0.5), transparent 34%),
    var(--page-hero-image, url("../images/sammy-gs-facebook-cover-image-b.png")) center / cover;
}

.vendor-artwork .vendor-artwork-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 49%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.vendor-artwork .vendor-artwork-hero::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  bottom: clamp(1.5rem, 8vw, 5rem);
  z-index: -1;
  width: min(44vw, 520px);
  aspect-ratio: 5 / 1;
  background: url("../images/sammy-gs-logo-transparent.png") center / contain no-repeat;
  filter: drop-shadow(0 22px 55px rgba(0, 0, 0, 0.55));
  opacity: 0.16;
}

.vendor-artwork .vendor-artwork-hero .container {
  min-height: clamp(430px, 52vw, 570px);
}

.vendor-artwork .vendor-artwork-hero h1 {
  max-width: 780px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.58);
}

.vendor-artwork .vendor-artwork-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.62);
}

.vendor-artwork .artwork-logo-preview {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 122, 128, 0.28), transparent 34%),
    linear-gradient(135deg, #050505, #101619);
}

.vendor-artwork .artwork-logo-preview img {
  width: min(100%, 520px);
  aspect-ratio: auto;
  object-fit: contain;
}

.vendor-artwork .artwork-icon-preview img {
  width: min(72%, 220px);
  max-height: 220px;
}

.vendor-artwork .restaurant-image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.vendor-artwork .restaurant-image-card {
  display: flex;
  flex-direction: column;
}

.vendor-artwork .restaurant-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 122, 128, 0.18), transparent 32%),
    #050505;
}

.vendor-artwork .restaurant-image-card .card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vendor-artwork .restaurant-image-card .button-row {
  margin-top: auto;
  padding-top: 1rem;
}

.vendor-artwork .menu-artwork-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.vendor-artwork .menu-artwork-card {
  display: flex;
  flex-direction: column;
}

.vendor-artwork .menu-artwork-preview {
  overflow: hidden;
  height: clamp(360px, 48vw, 560px);
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.vendor-artwork .menu-artwork-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.vendor-artwork .menu-artwork-card .card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vendor-artwork .menu-artwork-card .button-row {
  margin-top: auto;
  padding-top: 1rem;
}

.vendor-artwork .artwork-checklist {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-weight: 700;
}

.vendor-artwork .artwork-guidelines-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.vendor-artwork .artwork-checklist-card {
  min-height: 100%;
}

.vendor-artwork .artwork-spec-grid .card {
  min-height: 100%;
}

.vendor-artwork .artwork-spec-label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vendor-artwork .brand-swatch-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.vendor-artwork .brand-swatch {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.vendor-artwork .brand-swatch span {
  display: block;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 2px);
}

.vendor-artwork .brand-swatch strong {
  font-size: 1rem;
  font-weight: 950;
}

.vendor-artwork .brand-swatch em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 750;
}

.feature-band {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-media img.feature-media-contain {
  object-fit: cover;
  object-position: center top;
  background: var(--black);
}

.feature-copy h2,
.feature-copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.section-dark .feature-copy p,
.section-blue .feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.about-page {
  background: var(--foam);
}

.about-page figure {
  margin: 0;
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.25) 100%),
    radial-gradient(circle at 18% 78%, rgba(217, 67, 31, 0.32), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(15, 139, 141, 0.42), transparent 38%),
    url("../images/sammy-gs-dining-at-sunset.png?v=about-hero-20260630") center / cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.72));
}

.about-hero-inner {
  display: grid;
  min-height: clamp(520px, 64vw, 720px);
  align-items: end;
  padding-block: clamp(5rem, 12vw, 8rem) clamp(3.5rem, 8vw, 5rem);
}

.about-hero-copy {
  max-width: 900px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 10vw, 8rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
}

.about-hero p {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.64);
}

.about-intro {
  background:
    linear-gradient(180deg, var(--foam), var(--sand-soft));
}

.about-sammy-grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.about-portrait {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-story-copy {
  display: grid;
  gap: 1rem;
}

.about-story-copy h2,
.firehouse-copy h2,
.about-cta-panel h2 {
  margin: 0;
  font-size: clamp(2.35rem, 6.2vw, 5rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-story-copy h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
}

.about-story-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  font-weight: 650;
}

.about-support-photo {
  display: grid;
  gap: 0.65rem;
  max-width: 460px;
  margin-top: 0.5rem;
  padding: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(5, 5, 5, 0.09);
}

.about-support-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: calc(var(--radius) - 2px);
}

.about-support-photo figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.about-firehouse {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(217, 67, 31, 0.24), transparent 34%),
    linear-gradient(135deg, #050505, #102126 58%, #050505);
}

.about-firehouse::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(240, 161, 38, 0.14) 47%, transparent 56%),
    radial-gradient(circle at 90% 92%, rgba(15, 139, 141, 0.24), transparent 32%);
  pointer-events: none;
}

.firehouse-grid {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.firehouse-copy {
  display: grid;
  gap: 1rem;
}

.firehouse-copy h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--fire), var(--ember));
}

.firehouse-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.07rem;
  font-weight: 650;
}

.firehouse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 0.8rem;
  color: #ff3b30;
  background: rgba(5, 5, 5, 0.54);
  border: 1px solid rgba(255, 59, 48, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 0 36px rgba(255, 59, 48, 0.16);
}

.firehouse-badge img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 59, 48, 0.36));
}

.firehouse-badge-text {
  display: grid;
  gap: 0.15rem;
}

.firehouse-badge strong,
.firehouse-badge span {
  color: #ff3b30;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.firehouse-badge span {
  color: #ff3b30;
}

.firehouse-photo {
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.firehouse-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-history {
  background: linear-gradient(180deg, var(--foam), var(--white));
}

.history-timeline {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.history-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(5, 5, 5, 0.1);
}

.history-card span {
  color: var(--sea);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.history-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--black);
  border-radius: calc(var(--radius) - 2px);
}

.history-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.image-credit {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.history-upload-form {
  max-width: 920px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  box-shadow: 0 20px 54px rgba(5, 5, 5, 0.1);
}

.history-upload-form .section-head {
  max-width: 720px;
  margin-bottom: 0;
}

.history-upload-form .section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.history-upload-form .field label span {
  color: var(--muted);
  font-weight: 800;
}

.history-arrow {
  display: none;
}

.about-values {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(15, 139, 141, 0.3), transparent 32%),
    linear-gradient(135deg, #050505, #132529);
}

.about-values .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.value-card {
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.26);
}

.value-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.value-card-firehouse img {
  background: var(--black);
  object-fit: cover;
  object-position: center center;
}

.value-card div {
  padding: 1.15rem;
}

.value-card h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.about-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.56)),
    url("../images/sammy-gs-sunset-dining-waterfront.png") center / cover no-repeat;
}

.about-cta-panel {
  max-width: 850px;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.about-cta-panel p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
}

.about-cta-panel .button-row {
  margin-top: 1.35rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.stat {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--aqua);
  font-size: 1.4rem;
  font-weight: 950;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.special-card {
  display: grid;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.special-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.special-body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1rem;
}

.special-day {
  color: var(--fire);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.today-special-card {
  display: grid;
  gap: 0;
  margin-bottom: 1.2rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.today-special-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--black);
}

.today-special-copy {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: clamp(1.1rem, 4vw, 2rem);
}

.today-special-copy h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.today-special-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-line {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.callout {
  padding: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 67, 31, 0.88), rgba(10, 105, 118, 0.92)),
    url("../images/sammy-gs-upstairs-bar.png") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout h2,
.callout h3 {
  max-width: 760px;
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.callout p {
  max-width: 680px;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 700;
}

.fire-hour-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 4.75rem);
  color: var(--white);
  background:
    linear-gradient(135deg, #050607 0%, #071b21 44%, #020303 100%);
}

.fire-hour-section::before,
.fire-hour-section::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.fire-hour-section::before {
  inset: 0;
  opacity: 0.92;
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.5), rgba(2, 10, 12, 0.2) 44%, rgba(3, 5, 6, 0.5)),
    linear-gradient(180deg, rgba(2, 4, 5, 0.2), rgba(2, 4, 5, 0.35) 48%, rgba(2, 4, 5, 0.7)),
    url("../images/fire-hour-flames.jpg") center bottom / cover no-repeat;
  filter: saturate(1.25) contrast(1.1);
}

.fire-hour-section::after {
  inset: auto -10% -18%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(240, 161, 38, 0.58), rgba(217, 67, 31, 0.35) 35%, transparent 74%);
  filter: blur(18px);
  opacity: 0.85;
}

.fire-hour-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.fire-hour-inner::before {
  position: absolute;
  inset: -3rem 8% auto;
  z-index: -1;
  height: 14rem;
  content: "";
  background: radial-gradient(ellipse at center, rgba(240, 161, 38, 0.2), rgba(217, 67, 31, 0.15) 34%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.fire-hour-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.fire-hour-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.9rem;
  padding: 0.56rem 1rem;
  color: #fff7e8;
  background: linear-gradient(135deg, rgba(217, 67, 31, 0.92), rgba(240, 161, 38, 0.86));
  border: 1px solid rgba(255, 229, 164, 0.58);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(217, 67, 31, 0.34);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 950;
  letter-spacing: 0;
}

.fire-hour-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 9vw, 6.4rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(217, 67, 31, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.28);
}

.fire-hour-subhead {
  max-width: 760px;
  margin: 0.85rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2.4vw, 1.28rem);
  font-weight: 750;
}

.fire-hour-note {
  margin: 0.65rem 0 1.05rem;
  color: rgba(255, 229, 164, 0.9);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fire-hour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, #d9431f, #f0a126);
  border: 1px solid rgba(255, 235, 184, 0.54);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(217, 67, 31, 0.28);
  font-weight: 950;
  text-transform: uppercase;
}

.fire-hour-btn:hover {
  color: var(--white);
  box-shadow: 0 22px 54px rgba(240, 161, 38, 0.36);
  transform: translateY(-1px);
}

.fire-hour-btn:focus-visible {
  outline: 3px solid rgba(255, 229, 164, 0.95);
  outline-offset: 4px;
}

.fire-hour-divider {
  width: min(100%, 760px);
  height: 3px;
  margin: clamp(1rem, 3vw, 1.7rem) auto;
  background: linear-gradient(90deg, transparent, #d9431f 18%, #f0a126 50%, #d9431f 82%, transparent);
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(240, 161, 38, 0.42);
}

.fire-hour-menu-grid {
  display: grid;
  gap: 0.8rem;
}

.fire-hour-card {
  position: relative;
  overflow: hidden;
  padding: clamp(0.9rem, 2.2vw, 1.15rem);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 10, 12, 0.78);
  border: 1px solid rgba(240, 161, 38, 0.28);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 22px 60px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(217, 67, 31, 0.16);
  backdrop-filter: blur(14px);
}

.fire-hour-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 20% 0%, rgba(240, 161, 38, 0.18), transparent 17rem);
  pointer-events: none;
}

.fire-hour-card h3 {
  position: relative;
  margin: 0 0 0.65rem;
  color: #fff4df;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fire-hour-list {
  position: relative;
  display: grid;
  gap: 0.32rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fire-hour-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.52rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fire-hour-list li:first-child {
  border-top: 0;
}

.fire-hour-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.fire-hour-list strong {
  min-width: 5.25rem;
  padding: 0.26rem 0.55rem;
  color: #1b0c05;
  background: linear-gradient(135deg, #ffe4a3, #f0a126);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(240, 161, 38, 0.2);
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}


.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.32)),
    var(--page-hero-image, url("../images/sammy-gs-downstairs.png")) center / cover;
}

.page-hero .container {
  display: grid;
  min-height: 420px;
  align-items: end;
  padding-block: 6rem 3.8rem;
}

.page-hero p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 700;
}

.specials-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.48) 48%, rgba(5, 5, 5, 0.18) 100%),
    url("../images/sammy-gs-dining-at-sunset.png?v=page-hero-20260701") center / cover no-repeat;
}

.entertainer-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.48) 48%, rgba(5, 5, 5, 0.18) 100%),
    url("../images/hero-entertainers.png?v=entertainers-hero-20260701") center / cover no-repeat;
  background-position: center top;
}

.entertainer-page-hero .container {
  min-height: clamp(560px, 50vw, 680px);
}

.crew-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.45) 48%, rgba(5, 5, 5, 0.16) 100%),
    url("../images/deck-view.png?v=crew-hero-20260701") center / cover no-repeat;
}

.events-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.56) 48%, rgba(5, 5, 5, 0.16) 100%),
    url("../images/hero-filled-calendar.png?v=events-hero-20260701") center / cover no-repeat;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.45) 48%, rgba(5, 5, 5, 0.16) 100%),
    url("../images/deck-view.png?v=page-hero-20260701") center / cover no-repeat;
}

.menu-page-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.86) 42%, rgba(5, 5, 5, 0.34) 100%),
    radial-gradient(circle at 22% 80%, rgba(217, 67, 31, 0.32), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(15, 139, 141, 0.36), transparent 38%),
    url("../images/sammy-gs-menu-page-1.png?v=menu-hero-20260630") right clamp(1rem, 6vw, 5rem) center / min(520px, 42vw) auto no-repeat,
    #061014;
}

.menu-page-hero .container {
  min-height: 500px;
}

.menu-page-hero .container > div {
  max-width: 680px;
}

.menu-image-section {
  background:
    linear-gradient(180deg, rgba(245, 251, 250, 0.96), rgba(245, 235, 217, 0.62));
}

.menu-image-section .section-head {
  max-width: 980px;
}

.menu-subhead {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.menu-image-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: start;
}

.menu-image-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-image-card h3 {
  margin: 0;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #0c3440);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-image-card img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--black);
}

.menu-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: var(--black);
  border: 0;
  cursor: zoom-in;
}

.menu-zoom-trigger:focus-visible {
  outline: 4px solid var(--aqua);
  outline-offset: -4px;
}

.menu-zoom-trigger img {
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 220ms ease;
}

.menu-zoom-hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.42rem 0.6rem;
  color: var(--white);
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 3vw, 1.5rem);
  background: rgba(0, 0, 0, 0.84);
}

body.is-menu-zooming {
  overflow: hidden;
}

.menu-zoom-modal[hidden] {
  display: none;
}

.menu-zoom-dialog {
  display: grid;
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.menu-zoom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #0c3440);
}

.menu-zoom-bar h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-zoom-close,
.menu-zoom-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.72rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.menu-zoom-stage {
  max-height: min(76vh, 880px);
  overflow: auto;
  background: #eef7f8;
}

.menu-zoom-stage img {
  display: block;
  width: 100%;
  min-width: min(1000px, 100vw);
  height: auto;
  margin: 0 auto;
}

.menu-zoom-open {
  margin: 0.75rem 1rem 1rem;
  color: var(--white);
  background: var(--teal);
}

.menu-image-grid-single {
  max-width: 780px;
  margin-inline: auto;
}

@media (hover: hover) and (pointer: fine) {
  .menu-zoom-trigger:hover img {
    transform: scale(1.65);
  }
}

@media (max-width: 760px) {
  .menu-page-hero {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.9) 52%, rgba(5, 5, 5, 0.96) 100%),
      radial-gradient(circle at 18% 78%, rgba(217, 67, 31, 0.26), transparent 36%),
      url("../images/sammy-gs-menu-page-1.png?v=menu-hero-20260630") center 1.15rem / min(360px, 82vw) auto no-repeat,
      #061014;
  }

  .menu-page-hero .container {
    min-height: 560px;
    padding-top: 15rem;
  }
}

.menu-tools {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  padding: 0.9rem 0;
  background: rgba(245, 251, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.menu-tools-inner {
  display: grid;
  gap: 0.8rem;
}

.menu-search {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.15rem;
  overflow-x: auto;
}

.filter-btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.filter-btn.is-active {
  color: var(--white);
  background: var(--sea);
  border-color: var(--sea);
}

.menu-section {
  margin-bottom: 2rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-section.is-hidden,
.menu-item.is-hidden {
  display: none;
}

.menu-section h2 {
  margin: 0 0 0.9rem;
  padding-bottom: 0.7rem;
  color: var(--black);
  border-bottom: 2px solid var(--line);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  gap: 0.85rem;
}

.menu-item {
  display: grid;
  gap: 0.28rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #edf3f2;
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.15;
}

.menu-price {
  flex: 0 0 auto;
  color: var(--fire);
  font-weight: 950;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.menu-note {
  margin: -0.25rem 0 1rem;
  color: var(--muted);
  font-weight: 800;
}

.pdf-preview {
  display: grid;
  gap: 1rem;
}

.pdf-viewer-list {
  display: grid;
  gap: 1.4rem;
}

.pdf-viewer {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pdf-viewer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.pdf-viewer-header h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.1;
}

.pdf-viewer-header p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.pdf-frame {
  width: 100%;
  height: min(78vh, 820px);
  min-height: 520px;
  border: 0;
}

.pdf-fallback {
  padding: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.pdf-preview img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-shell {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.entertainer-form {
  gap: clamp(1.1rem, 2vw, 1.45rem);
}

.entertainer-form .form-section {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: rgba(15, 122, 128, 0.05);
  border: 1px solid rgba(15, 122, 128, 0.15);
  border-radius: var(--radius);
}

.entertainer-form .form-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.form-alert {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert.is-visible {
  display: block;
}

.form-alert.success {
  color: #0d432f;
  background: #dff4e8;
  border: 1px solid #9bd7b8;
}

.form-alert.error {
  color: #6d1c0b;
  background: #fde2d9;
  border: 1px solid #efad9d;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label,
.fieldset-label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.82rem;
  color: var(--ink);
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 650;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.choice-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.78rem;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.choice input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--sea);
}

.rate-fieldset {
  display: grid;
  gap: 0.7rem;
}

.rate-grid {
  display: grid;
  gap: 0.65rem;
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.78rem;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rate-row > span {
  color: var(--ink);
  font-weight: 950;
}

.rate-row input {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  font-weight: 750;
}

.rate-row input:focus-visible {
  outline: 3px solid rgba(15, 122, 128, 0.22);
  border-color: var(--sea);
}

@media (max-width: 560px) {
  .rate-row {
    grid-template-columns: 1fr;
  }
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-events-dynamic {
  background:
    radial-gradient(circle at 14% 12%, rgba(15, 139, 141, 0.13), transparent 30%),
    linear-gradient(180deg, #f5fbfb 0%, #fff8eb 100%);
}

.event-groups {
  display: grid;
  gap: 1.35rem;
}

.event-group {
  display: grid;
  gap: 0.85rem;
}

.event-group-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.event-group-head::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 139, 141, 0.48), rgba(229, 68, 38, 0.12), transparent);
}

.event-group-head span {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dynamic-event-grid {
  display: grid;
  gap: 1rem;
}

.dynamic-event-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 139, 141, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(10, 24, 28, 0.12);
}

.dynamic-event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--black);
}

.dynamic-event-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.dynamic-event-card-body .btn {
  width: fit-content;
  margin-top: auto;
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: auto;
}

.dynamic-event-card-body .event-card-actions .btn {
  margin-top: 0;
}

.dynamic-event-card .event-secondary-action {
  color: var(--teal);
  border-color: rgba(15, 139, 141, 0.28);
}

.event-category {
  width: fit-content;
  padding: 0.32rem 0.55rem;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dynamic-event-card h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.dynamic-event-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.dynamic-event-card .event-meta {
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 950;
}

.dynamic-event-card .event-meta span {
  color: rgba(9, 31, 35, 0.34);
}

.calendar-frame,
.map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calendar-frame {
  aspect-ratio: 4 / 3;
  min-height: min(720px, 78vh);
}

.calendar-only {
  grid-template-columns: 1fr;
}

.calendar-only .calendar-frame {
  min-height: min(900px, 84vh);
}

.map-frame {
  aspect-ratio: 16 / 10;
  min-height: 320px;
}

.lineup-calendar-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.lineup-panel {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lineup-panel h3 {
  margin: 0 0 0.9rem;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-lineup-posts {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 161, 38, 0.18), transparent 28%),
    radial-gradient(circle at 90% 82%, rgba(15, 139, 141, 0.25), transparent 34%),
    linear-gradient(135deg, #062024 0%, #0b6670 48%, #092b36 100%);
}

.section-lineup-posts .feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-lineup-posts .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.section-lineup-posts .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.artist-lineup {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.artist-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.artist-card img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--black);
  border-radius: var(--radius);
}

.artist-card span {
  display: block;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-card h4 {
  margin: 0.12rem 0;
  color: var(--black);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.05;
}

.artist-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.calendar-frame iframe,
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-list,
.contact-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-list li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.section-dark .hours-list li,
.section-dark .contact-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: stretch;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 92px;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 950;
}

.section-dark .social-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.site-footer .social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 330px;
}

.site-footer .social-link {
  width: 100%;
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-main > div {
  min-width: 0;
}

.footer-logo {
  width: min(100%, 330px);
  margin-bottom: 1rem;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.newsletter-form {
  display: grid;
  gap: 0.65rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-credit a:hover {
  color: var(--aqua);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

@media (min-width: 700px) {
  .quick-info-grid,
  .hero-info-grid,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .field.full,
  .form-shell fieldset.full {
    grid-column: 1 / -1;
  }

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

  .menu-tools-inner {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    align-items: start;
  }

  .pdf-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dynamic-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    transform: none;
  }

  .site-nav a {
    padding: 0.55rem 0.62rem;
    font-size: 0.78rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    padding-inline: 0.85rem;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  }

  .hero-today-card {
    justify-self: end;
  }

  .quick-info-grid,
  .hero-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .feature-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-sammy-grid {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }

  .firehouse-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  }

  .firehouse-photo {
    order: 2;
  }

  .history-timeline {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .history-arrow {
    position: relative;
    display: block;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--ember));
  }

  .history-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--ember);
    border-right: 2px solid var(--ember);
    transform: translateY(-50%) rotate(45deg);
  }

  .lineup-calendar-layout {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  }

  .lineup-calendar-layout.calendar-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-image-grid-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .fire-hour-inner {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
  }

  .fire-hour-head {
    margin-inline: 0;
    text-align: left;
  }

  .fire-hour-subhead {
    margin-inline: 0;
  }

  .fire-hour-divider {
    display: none;
  }

  .fire-hour-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-artwork .artwork-guidelines-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  }

  .today-special-card {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

  .feature-band.reverse .feature-media {
    order: 2;
  }

  .menu-section {
    padding: 1.4rem;
  }

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 1120px) {
  .site-nav a {
    padding-inline: 0.78rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 699px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 4.4rem 1rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-today-card {
    width: 100%;
  }

  .hero-info-grid {
    padding: 0.7rem;
  }
}

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

  .hero-video {
    display: none;
  }

  .fire-hour-btn:hover {
    transform: none;
  }
}
