:root {
  --blue: #143c9b;
  --blue-dark: #061f5f;
  --gold: #f4bd24;
  --gold-soft: #fff0bc;
  --red: #d51f2d;
  --black: #111217;
  --ink: #1a1b22;
  --muted: #5c6270;
  --white: #ffffff;
  --cream: #fff9ed;
  --line: rgba(20, 60, 155, 0.18);
  --shadow: 0 22px 58px rgba(6, 31, 95, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 189, 36, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 249, 237, 0.9));
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(92px, 12vw, 150px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.heart-accent::before,
.event-callout::before,
.site-footer::before {
  color: var(--red);
  content: "\2665";
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  padding: clamp(40px, 6vw, 78px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 31, 95, 0.98), rgba(20, 60, 155, 0.9) 54%, rgba(17, 18, 23, 0.96)),
    var(--blue-dark);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(760px, calc(100vh - 108px));
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.events-section .eyebrow {
  color: var(--gold);
}

.authentic-highlight {
  color: #ffd21f;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(255, 210, 31, 0.45);
}

.signature-slogan {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 0 14px rgba(244, 189, 36, 0.42);
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.15;
}

h4 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-tagline {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
}

.hero-tagline > span {
  display: block;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.music-section {
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(42px, 7vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 188, 0.66)),
    var(--white);
}

.music-card {
  display: grid;
  grid-template-columns: minmax(100px, 150px) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 189, 36, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(6, 31, 95, 0.98), rgba(20, 60, 155, 0.96)),
    var(--blue-dark);
  border: 1px solid rgba(244, 189, 36, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.music-art {
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(244, 189, 36, 0.55);
  border-radius: 8px;
}

.music-art img {
  width: 100%;
  height: auto;
}

.music-card h2,
.music-card p {
  color: var(--white);
}

.music-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.music-card .eyebrow,
.music-subtitle {
  color: var(--gold);
}

.music-subtitle {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 900;
}

.music-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82) !important;
}

.music-action {
  justify-self: end;
}

.music-toggle {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-dark);
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(6, 31, 95, 0.3);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.music-toggle:hover {
  color: var(--blue-dark);
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 31, 95, 0.36);
}

.music-toggle-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.music-toggle:hover .music-toggle-icon {
  color: var(--gold);
  background: var(--blue-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: var(--blue-dark);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(244, 189, 36, 0.22);
}

.button.primary:hover {
  background: var(--white);
  border-color: var(--white);
}

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

.button.secondary:hover {
  color: var(--blue-dark);
  background: var(--white);
}

.hero-image-card {
  overflow: hidden;
  min-height: 460px;
  border: 6px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading,
.contact-section,
.events-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.section-intro {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-intro p,
.rich-copy,
.event-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-intro .button {
  margin-top: 10px;
}

.rich-copy p {
  margin-bottom: 18px;
}

blockquote {
  margin: 28px 0 0;
  padding: 24px;
  color: var(--black);
  background: var(--gold-soft);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  font-size: 1.16rem;
  font-weight: 800;
}

.about-section {
  background: var(--white);
}

.baxter-map-section {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 188, 0.42)),
    var(--white);
  border-top: 1px solid rgba(20, 60, 155, 0.12);
}

.baxter-map-intro {
  max-width: 980px;
  margin: 0 auto 34px;
}

.baxter-map-intro h2 {
  color: var(--blue-dark);
}

.baxter-map-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.baxter-map-feature {
  max-width: 1400px;
  margin: 0 auto 28px;
}

.baxter-map-link {
  position: relative;
  display: block;
  padding: clamp(8px, 1.4vw, 14px);
  background:
    linear-gradient(135deg, rgba(20, 60, 155, 0.08), rgba(244, 189, 36, 0.16)),
    var(--cream);
  border: 1px solid rgba(244, 189, 36, 0.58);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(6, 31, 95, 0.16);
  cursor: zoom-in;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.baxter-map-link:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(6, 31, 95, 0.2);
  transform: translateY(-3px);
}

.baxter-map-link img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.baxter-map-feature figcaption {
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--blue-dark);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  font-weight: 900;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(20, 60, 155, 0.06), rgba(244, 189, 36, 0.12)),
    var(--cream);
}

.menu-brand-panel {
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1080px;
  margin-bottom: 48px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 60, 155, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 31, 95, 0.1);
}

.menu-brand-panel .section-intro {
  margin-bottom: 0;
}

.menu-slogan {
  max-width: 760px;
  margin: -18px 0 42px;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(244, 189, 36, 0.34);
}

.section-logo,
.cta-logo,
.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-logo {
  max-width: 250px;
  justify-self: center;
}

.menu-category + .menu-category {
  margin-top: 44px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.menu-grid.drinks {
  grid-template-columns: minmax(260px, 420px);
}

.menu-card,
.service-card,
.merch-card,
.event-callout,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6, 31, 95, 0.08);
}

.menu-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-card:hover,
.service-card:hover,
.merch-card:hover {
  border-color: rgba(244, 189, 36, 0.9);
  box-shadow: 0 22px 46px rgba(6, 31, 95, 0.14);
  transform: translateY(-4px);
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-card.featured {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(244, 189, 36, 0.55);
}

.menu-card.featured h4,
.menu-card.featured p {
  color: var(--white);
}

.menu-card.drink {
  background: var(--gold-soft);
  border-color: rgba(244, 189, 36, 0.7);
}

.heart-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sauce-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 189, 36, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(6, 31, 95, 1), rgba(20, 60, 155, 0.96) 58%, rgba(17, 18, 23, 0.98)),
    var(--blue-dark);
}

.sauce-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.sauce-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 189, 36, 0.38);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.sauce-badges {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.sauce-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--blue-dark);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.sauce-bottle {
  width: min(430px, 100%);
  max-height: 720px;
  object-fit: contain;
  border: 1px solid rgba(244, 189, 36, 0.45);
  border-radius: 8px;
  box-shadow: 0 30px 48px rgba(0, 0, 0, 0.34);
}

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

.sauce-logo {
  width: clamp(150px, 22vw, 250px);
  height: auto;
  margin-bottom: 22px;
  background: rgba(17, 18, 23, 0.24);
  border: 1px solid rgba(244, 189, 36, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.sauce-copy h2,
.sauce-copy h3,
.sauce-copy p {
  color: var(--white);
}

.sauce-copy h2 {
  max-width: 760px;
}

.sauce-subtitle {
  color: var(--gold) !important;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
}

.sauce-details,
.pairing-card {
  padding: clamp(20px, 3vw, 26px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 189, 36, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.sauce-details {
  margin: 28px 0 18px;
}

.sauce-details h3,
.pairing-card h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.sauce-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.sauce-details li {
  color: rgba(255, 255, 255, 0.9);
}

.pairing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pairing-list span {
  padding: 9px 12px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(244, 189, 36, 0.5);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.sauce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.content-credit {
  max-width: 640px;
  margin: 22px 0 0;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.78) !important;
  border-top: 1px solid rgba(244, 189, 36, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
}

.content-credit strong {
  color: var(--gold);
  font-weight: 900;
}

.button.gold-outline {
  color: var(--gold);
  border-color: var(--gold);
}

.button.gold-outline:hover {
  color: var(--blue-dark);
  background: var(--gold);
  border-color: var(--gold);
}

.events-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 31, 95, 0.98), rgba(20, 60, 155, 0.92)),
    var(--blue-dark);
}

.events-section h2,
.events-section p {
  color: var(--white);
}

.events-section p {
  color: rgba(255, 255, 255, 0.86);
}

.event-callout {
  position: relative;
  padding: clamp(28px, 5vw, 44px);
  color: var(--blue-dark);
  background: var(--white);
}

.event-callout::before {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.4rem;
}

.event-callout span,
.event-callout strong,
.event-callout time {
  display: block;
}

.event-callout span {
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.event-callout strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.event-callout time {
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 900;
}

.catering-section {
  background: var(--white);
}

.catering-cta {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 46px);
  align-items: center;
  max-width: 1080px;
  margin-bottom: 38px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(20, 60, 155, 0.08), rgba(244, 189, 36, 0.14)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catering-cta .section-intro {
  margin-bottom: 0;
}

.cta-logo {
  max-width: 220px;
  justify-self: center;
  filter: drop-shadow(0 14px 22px rgba(6, 31, 95, 0.14));
}

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

.service-card {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--blue-dark);
  background:
    linear-gradient(135deg, rgba(244, 189, 36, 0.18), rgba(255, 255, 255, 0.94)),
    var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.merchandise-section {
  background:
    linear-gradient(180deg, rgba(20, 60, 155, 0.06), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.merchandise-intro {
  max-width: 960px;
}

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

.merch-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(244, 189, 36, 0.16), rgba(255, 255, 255, 0.96)),
    var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.merch-card h3 {
  margin-bottom: 12px;
}

.merch-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.merch-card .button {
  margin-top: auto;
}

.merch-accent {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(244, 189, 36, 0.65);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--cream);
}

.contact-slogan-band {
  padding: clamp(30px, 5vw, 52px) clamp(18px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 31, 95, 0.98), rgba(20, 60, 155, 0.94)),
    var(--blue-dark);
  border-top: 2px solid rgba(244, 189, 36, 0.6);
  border-bottom: 2px solid rgba(244, 189, 36, 0.6);
}

.contact-slogan-band .signature-slogan {
  margin: 0;
}

.tally-form-wrap {
  overflow: hidden;
  min-height: 760px;
  padding: clamp(12px, 2vw, 18px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tally-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  position: relative;
  padding: 52px 18px;
  text-align: center;
  color: var(--white);
  background: var(--black);
}

.footer-logo {
  max-width: clamp(150px, 24vw, 250px);
  margin: 0 auto 18px;
  border-radius: 8px;
}

.site-footer::before {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.site-footer p {
  margin-bottom: 6px;
  font-weight: 800;
}

.footer-tagline {
  display: grid;
  gap: 4px;
  margin: 20px auto 0 !important;
}

.footer-tagline span {
  display: block;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 560px);
  margin: 18px auto 0 !important;
  padding: 10px 16px;
  color: var(--gold);
  border: 1px solid rgba(244, 189, 36, 0.42);
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-footer strong {
  display: block;
  margin-top: 18px;
}

@media (max-width: 1120px) {
  .hero-content,
  .section-heading,
  .contact-section,
  .events-section,
  .sauce-product,
  .music-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 118px;
    max-height: none;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 320px;
  }

  .sauce-visual {
    min-height: 520px;
  }

  .menu-grid,
  .menu-grid.compact,
  .menu-grid.drinks,
  .service-grid,
  .merchandise-grid {
    grid-template-columns: 1fr;
  }

  .menu-brand-panel,
  .catering-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-brand-panel .section-intro,
  .catering-cta .section-intro {
    margin-inline: auto;
  }

  .section-logo {
    max-width: 190px;
  }

  .cta-logo {
    max-width: 180px;
  }

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

@media (max-width: 500px) {
  .brand {
    align-items: flex-start;
  }

  .hero-actions,
  .button,
  .sauce-actions {
    width: 100%;
  }

  .music-action {
    justify-self: stretch;
  }

  .music-toggle {
    right: 12px;
    bottom: 14px;
    left: 12px;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .event-callout strong {
    font-size: 2.45rem;
  }
}
