/* Clancy's Pub — Modern Redesign
   Dark body · green nav & footer · brand yellow/red accents */

:root {
  --brand-red: #e30613;
  --brand-red-deep: #b00410;
  --brand-yellow: #f5d400;
  --brand-yellow-soft: #ffe44d;
  --brand-green: #0a6b3c;
  --brand-green-deep: #064d2b;
  --brand-green-bright: #1a8f52;
  --nav-green: #0c5c34;
  --nav-green-deep: #084428;
  --footer-green: #0a5230;
  --footer-green-deep: #063820;

  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --bg-card: #161616;
  --bg-soft: #1c1c1c;
  --surface: #242424;
  --text: #f7f7f7;
  --text-muted: #b8b8b8;
  --text-dim: #888;
  --cream: #fff8e7;
  --gold: var(--brand-yellow);
  --gold-soft: var(--brand-yellow-soft);
  --copper: #e8a020;
  --chili: var(--brand-red);
  --chili-deep: var(--brand-red-deep);
  --irish: var(--brand-green);
  --irish-bright: var(--brand-green-bright);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(245, 212, 0, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 0% -5%, rgba(227, 6, 19, 0.14), transparent 50%),
    radial-gradient(900px 500px at 100% 0%, rgba(10, 107, 60, 0.16), transparent 50%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--brand-red);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--brand-yellow-soft);
  letter-spacing: 0.02em;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  min-height: 2.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  isolation: isolate;
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    color 0.22s var(--ease),
    filter 0.22s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%),
    linear-gradient(135deg, #ffe44d 0%, var(--brand-yellow) 45%, #d4a000 100%);
  color: #111;
  border-color: rgba(255, 220, 80, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 22px rgba(245, 212, 0, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 12px 30px rgba(245, 212, 0, 0.38),
    0 4px 10px rgba(0, 0, 0, 0.28);
}

.btn-primary:active {
  filter: brightness(0.97);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2) inset,
    0 4px 12px rgba(245, 212, 0, 0.2);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(245, 212, 0, 0.45);
  color: var(--cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 6px 18px rgba(0, 0, 0, 0.22);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.07) 100%);
  border-color: var(--brand-yellow);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(245, 212, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(227, 6, 19, 0.55);
  color: #ffb3b8;
  background: rgba(227, 6, 19, 0.08);
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.12);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Nav (green) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--brand-yellow);
  background: linear-gradient(180deg, var(--nav-green) 0%, var(--nav-green-deep) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand-mark-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background: #000;
  border: 2px solid var(--brand-yellow);
  flex-shrink: 0;
  padding: 2px;
}

.brand-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-links .nav-drop-btn {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-drop-btn:hover,
.nav-item-drop.open > .nav-drop-btn,
.nav-item-drop:hover > .nav-drop-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-links a.active,
.nav-item-drop.active > .nav-drop-btn {
  color: var(--brand-yellow);
  background: rgba(0, 0, 0, 0.2);
}

.nav-drop-btn .chev {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-item-drop.open .chev,
.nav-item-drop:hover .chev {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  background: var(--nav-green-deep);
  border: 1px solid rgba(245, 212, 0, 0.35);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 120;
}

.nav-item-drop:hover > .nav-dropdown,
.nav-item-drop.open > .nav-dropdown,
.nav-item-drop:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  width: 100%;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--brand-yellow);
  background: rgba(0, 0, 0, 0.25);
}

.nav-dropdown a strong {
  display: block;
  font-weight: 700;
  color: inherit;
}

.nav-dropdown a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.1rem;
}

.nav-cta { display: none; }

/* Yellow CTA on green nav for contrast */
.site-header .nav-cta.btn-primary {
  padding: 0.65rem 1.15rem;
  min-height: 2.5rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%),
    linear-gradient(135deg, #ffe44d 0%, var(--brand-yellow) 45%, #d4a000 100%);
  color: #111;
  border-color: rgba(255, 220, 80, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 16px rgba(0, 0, 0, 0.28);
}

.site-header .nav-cta.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 8px 20px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(245, 212, 0, 0.2);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    transform 0.18s var(--ease);
}

.nav-toggle:hover {
  border-color: rgba(245, 212, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%),
    rgba(0, 0, 0, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(245, 212, 0, 0.12);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.28s var(--ease),
    opacity 0.2s ease,
    width 0.22s var(--ease),
    background 0.22s var(--ease);
}

.nav-toggle:hover span {
  background: var(--brand-yellow);
}

body.nav-open .nav-toggle {
  border-color: rgba(245, 212, 0, 0.65);
  background:
    linear-gradient(180deg, rgba(245, 212, 0, 0.18) 0%, rgba(245, 212, 0, 0.06) 100%),
    rgba(0, 0, 0, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px rgba(245, 212, 0, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.3);
}

body.nav-open .nav-toggle span {
  background: var(--brand-yellow);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Checkered accent bar ---------- */
.checkered-bar {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      #000 0 14px,
      #fff 14px 28px
    );
  border-top: 3px solid var(--brand-red);
  border-bottom: 3px solid var(--brand-red);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3.5rem, 9vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0.55) 100%),
    url("assets/about.jpg") center 40% / cover no-repeat;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-logo {
  width: min(100%, 420px);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 107, 60, 0.35);
  border: 1px solid rgba(26, 143, 82, 0.45);
  color: #b8f0cc;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--brand-yellow);
}

.hero-card {
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-card-photo {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.1rem;
  height: auto;
  max-height: 240px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--brand-yellow);
}

.hours-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list span { color: var(--text-muted); }
.hours-list strong { font-weight: 700; text-align: right; }

.breakfast-callout {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.35);
  font-size: 0.9rem;
}

.breakfast-callout strong {
  color: #ff9aa2;
  display: block;
  margin-bottom: 0.2rem;
}

/* ---------- Feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #0d0d0d;
}

.feature-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Cuisine strip ---------- */
.cuisine-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chip.accent {
  background: rgba(10, 107, 60, 0.25);
  border-color: rgba(26, 143, 82, 0.4);
  color: #b8e0c4;
}

.chip.hot {
  background: rgba(227, 6, 19, 0.15);
  border-color: rgba(227, 6, 19, 0.4);
  color: #ffb3b8;
}

/* ---------- Photo gallery ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.photo-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: #0d0d0d;
  aspect-ratio: 4 / 3;
}

.photo-grid figure:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.photo-grid figure:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s var(--ease);
}

.photo-grid figure:hover img {
  transform: scale(1.02);
}

.photo-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.7rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  pointer-events: none;
}

/* ---------- Highlight / quote ---------- */
.highlight-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.panel-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-media img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #0d0d0d;
  flex: 1;
}

.panel-media .panel-caption {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quote-panel {
  background:
    linear-gradient(145deg, rgba(10, 107, 60, 0.28), rgba(22, 22, 22, 0.95)),
    var(--bg-card);
  border-color: rgba(26, 143, 82, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-panel cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--brand-yellow);
  font-weight: 700;
}

/* ---------- Menu page ---------- */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  position: relative;
}

.page-hero.with-bg {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.page-hero.with-bg .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}

.page-hero.with-bg .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.92));
}

.page-hero.with-bg .container {
  position: relative;
  z-index: 1;
}

.page-logo {
  width: min(280px, 70vw);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

/* Hero phone / email — full text desktop, icons only on mobile */
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.hero-contact-label {
  margin-right: 0.15rem;
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-yellow);
  font-weight: 700;
  text-decoration: none;
}

.hero-contact-link:hover {
  color: var(--brand-yellow-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-contact-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-contact-sep {
  opacity: 0.5;
  margin: 0 0.15rem;
}

.hero-contact-full {
  font-size: 0.95rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 0.5rem);
  z-index: 50;
  padding: 0.65rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.menu-tabs.is-hidden {
  display: none;
}

.menu-tab {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-tab:hover { color: var(--cream); }

.menu-tab.active {
  background: linear-gradient(135deg, var(--brand-yellow), #e8a800);
  color: #111;
}

.menu-section {
  display: none;
  animation: fadeUp 0.35s var(--ease);
}

.menu-section.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-note {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.menu-section h2,
.menu-section .menu-subhead,
.menu-section > h3 {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  line-height: 1.25;
  max-width: 100%;
}

.menu-section .menu-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s ease;
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.menu-item:hover { border-color: var(--border-strong); }

.menu-item.has-photo {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem;
}

.menu-item-thumb {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background: #0d0d0d;
  border: 1px solid var(--border);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
  min-width: 0;
}

.menu-item-top:last-child {
  margin-bottom: 0;
}

.menu-item h3 {
  font-size: 1.05rem;
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}

.price {
  font-weight: 800;
  color: var(--brand-yellow);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  line-height: 1.3;
}

.menu-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.tag {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9fd4b0;
  background: rgba(10, 107, 60, 0.22);
  border: 1px solid rgba(26, 143, 82, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.tag.chili {
  color: #ffb3b8;
  background: rgba(227, 6, 19, 0.15);
  border-color: rgba(227, 6, 19, 0.35);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.special-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--brand-yellow), var(--brand-red));
}

.special-day {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 0.4rem;
}

/* ---------- Entertainment ---------- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.event-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.event-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
}

.event-list .date {
  font-weight: 800;
  color: var(--cream);
}

.event-list .act { color: var(--text-muted); }

.weekly-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.info-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(245, 212, 0, 0.12);
  display: grid;
  place-items: center;
  color: var(--brand-yellow);
  font-size: 1.1rem;
}

.info-list strong { display: block; margin-bottom: 0.15rem; }

.info-list a {
  color: var(--brand-yellow-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-list p {
  margin: 0;
  color: var(--text-muted);
}

.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  min-height: 320px;
  filter: grayscale(0.15) contrast(1.05);
  border: 1px solid var(--border);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(245, 212, 0, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- About timeline ---------- */
.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-yellow);
  font-size: 1.15rem;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #0d0d0d;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ---------- Footer (green) ---------- */
.site-footer {
  border-top: 3px solid var(--brand-yellow);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: linear-gradient(180deg, var(--footer-green) 0%, var(--footer-green-deep) 100%);
  color: #f2f7f4;
}

.site-footer .footer-brand p,
.site-footer .text-muted,
.site-footer .tagline {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .tagline {
  color: var(--brand-yellow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 28rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

/* ---------- Side social rail (right) ---------- */
.side-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.45rem 0 0.45rem 0.4rem;
}

.side-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px 0 0 12px;
  background: var(--nav-green);
  border: 1px solid rgba(245, 212, 0, 0.35);
  border-right: 0;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow: -4px 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}

.side-social a:hover {
  transform: translateX(-4px);
  background: var(--brand-yellow);
  color: #111;
}

/* Phone matches green social buttons */

.side-social a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ---------- Corner music player ---------- */
.music-player {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  /* Keep clear of the right-side social rail */
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nav-green) 0%, var(--nav-green-deep) 100%);
  border: 2px solid var(--brand-yellow);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  color: #fff;
  max-width: min(320px, calc(100vw - 2rem));
}

.music-player audio {
  display: none;
}

.music-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--brand-yellow);
  color: #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}

.music-play-btn:hover {
  transform: scale(1.06);
  background: var(--brand-yellow-soft);
}

.music-play-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.music-play-btn .icon-play,
.music-play-btn .icon-pause {
  display: none;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.music-play-btn[aria-pressed="false"] .icon-play { display: block; }
.music-play-btn[aria-pressed="true"] .icon-pause { display: block; }

.music-meta {
  min-width: 0;
  line-height: 1.2;
}

.music-meta .music-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-yellow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-meta .music-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.music-player.is-playing {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(245, 212, 0, 0.2);
}

/* Contact social cards */
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.social-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-2px);
  background: rgba(10, 107, 60, 0.25);
}

.social-card .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--nav-green);
  color: #fff;
  flex-shrink: 0;
}

.social-card .social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-card strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
}

.social-card span {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }

.cta-banner {
  background:
    linear-gradient(120deg, rgba(10, 107, 60, 0.32), rgba(227, 6, 19, 0.18)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-banner p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
}

.mascot-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.mascot-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  background: #0d0d0d;
  border-radius: 12px;
  border: 2px solid var(--brand-green);
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.photo-band img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #0d0d0d;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .highlight-panel,
  .contact-grid,
  .footer-grid,
  .split-media {
    grid-template-columns: 1fr;
  }

  .features,
  .menu-grid,
  .weekly-cards {
    grid-template-columns: 1fr;
  }

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

  .photo-grid figure:nth-child(1),
  .photo-grid figure:nth-child(6) {
    grid-column: span 2;
  }

  .photo-grid figure {
    aspect-ratio: 4 / 3;
  }

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

  .nav-toggle { display: grid; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem 1.15rem;
    background:
      linear-gradient(180deg, rgba(245, 212, 0, 0.06) 0%, transparent 48px),
      linear-gradient(180deg, var(--nav-green) 0%, var(--nav-green-deep) 100%);
    border-bottom: 2px solid rgba(245, 212, 0, 0.35);
    transform: translateY(-108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s var(--ease), opacity 0.28s ease;
    gap: 0.2rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.5),
      0 1px 0 rgba(255, 255, 255, 0.06) inset;
  }

  body.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-drop-btn {
    padding: 0.95rem 1.05rem;
    border-radius: 12px;
    width: 100%;
    justify-content: space-between;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links .nav-drop-btn:hover,
  .nav-item-drop.open > .nav-drop-btn {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links a.active,
  .nav-item-drop.active > .nav-drop-btn {
    color: var(--brand-yellow);
    background: rgba(0, 0, 0, 0.32);
    border-color: rgba(245, 212, 0, 0.22);
    box-shadow: 0 0 0 1px rgba(245, 212, 0, 0.08);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: 1px solid rgba(245, 212, 0, 0.18);
    margin: 0.2rem 0 0.45rem;
    padding: 0.35rem;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 12px;
  }

  .nav-item-drop.open > .nav-dropdown {
    display: block;
  }

  .nav-item-drop:hover > .nav-dropdown {
    display: none;
  }

  .nav-item-drop.open:hover > .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
  }

  .nav-cta { display: none; }

  .menu-tabs {
    border-radius: var(--radius);
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .brand-logo {
    height: 44px;
    max-width: min(180px, 46vw);
  }

  /* Hero: show only phone / email icons on mobile */
  .hero-contact-full {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero-contact-link {
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: 12px;
    background: rgba(245, 212, 0, 0.12);
    border: 1px solid rgba(245, 212, 0, 0.35);
    text-decoration: none;
  }

  .hero-contact-link:hover {
    background: rgba(245, 212, 0, 0.2);
    text-decoration: none;
  }

  .hero-contact-icon {
    font-size: 1.35rem;
  }

  .hero-contact-sep {
    display: none;
  }

  .side-social a {
    width: 42px;
    height: 42px;
  }

  .music-player {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
  }

  .music-play-btn {
    width: 44px;
    height: 44px;
  }

  .music-meta .music-title {
    font-size: 0.92rem;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .nav-cta { display: inline-flex; }
}

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