/*
 * styles.css — O'Maddy's Bar & Grill
 * Design tokens + full site stylesheet
 * Palette: Boca Ciega Navy, Shore Blvd Gold, Neon Coral
 * Typography: Zilla Slab + DM Sans
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1E3A5F;
  --color-primary-dark: #12263F;
  --color-primary-light: #3D6A8C;
  --color-secondary: #D4A052;
  --color-accent: #C85A32;
  --color-bg: #FAF6F0;
  --color-surface: #F0EBE3;
  --color-text: #1C1917;
  --color-text-secondary: #57534E;
  --color-text-on-primary: #FAF6F0;
  --color-border: #D6D0C8;
  --font-primary: 'Zilla Slab', serif;
  --font-secondary: 'DM Sans', sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;
  --nav-height: 60px;
  --max-width: 1200px;
  --transition-base: 0.3s ease;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  padding-bottom: 42px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   Typography System
   ============================================================ */
.display {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

h3, .h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h4, .h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.lead {
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.6;
}

.body-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.small-text {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.caption {
  font-family: var(--font-secondary);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(30, 58, 95, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--transition-base);
  display: flex;
  align-items: stretch;
  padding: 0 5vw;
}

.site-nav.scrolled {
  background-color: rgba(30, 58, 95, 1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  position: relative;
  z-index: 1001;
  margin-top: 12px;
}

.nav-logo-circle {
  display: flex;
  flex-shrink: 0;
}

.nav-logo-circle img {
  height: 160px;
  width: auto;
  display: block;
  transform: rotate(-10deg);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.65));
  transition: transform var(--transition-base), filter var(--transition-base);
}

.nav-logo-circle:hover img {
  transform: rotate(-10deg) scale(1.05);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.75));
}

@media (max-width: 640px) {
  .nav-logo-circle img {
    height: 110px;
    transform: rotate(-8deg);
  }
  .nav-logo-circle:hover img {
    transform: rotate(-8deg) scale(1.05);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-on-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-text-on-primary);
}

.nav-links a.active::after {
  width: 100%;
  background-color: var(--color-accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-on-primary);
  margin: 6px 0;
  transition: all var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  color: var(--color-text-on-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav-overlay a:hover {
  color: var(--color-secondary);
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5vw;
}

.section-padding {
  padding: 80px 0;
}

.gold-rule {
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
  border: none;
}

.gold-rule-short {
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
  border: none;
}

/* ============================================================
   Homepage — Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 38, 63, 0.75) 0%,
    rgba(18, 38, 63, 0.55) 25%,
    rgba(18, 38, 63, 0.15) 45%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5vw 48px;
}

.hero-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}


.hero-headline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-bg);
  margin-bottom: 12px;
  max-width: 500px;
}

.hero-sub {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--color-bg);
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ============================================================
   Homepage — Mission Statement
   ============================================================ */
.mission-section {
  background-color: var(--color-surface);
  padding: 80px 5vw;
  text-align: center;
}

.mission-inner {
  max-width: 720px;
  margin: 0 auto;
}

.mission-rule {
  width: 60px;
  height: 1px;
  background-color: var(--color-secondary);
  border: none;
  margin: 0 auto 48px;
}

.mission-quote {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 24px;
}

.mission-attribution {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ============================================================
   Homepage — Social Proof
   ============================================================ */
.social-proof {
  background-color: var(--color-bg);
  padding: 80px 5vw;
}

.social-proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.social-proof-headline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  font-size: 48px;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 8px;
}

.social-proof-source {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

.reviews-grid {
  display: flex;
  gap: 40px;
  text-align: left;
  margin-bottom: 32px;
}

.review-card {
  flex: 1;
  min-width: 0;
  border-left: 3px solid var(--color-secondary);
  padding-left: 24px;
}

.review-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 12px;
}

.review-source {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.social-proof-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.social-proof-badge img {
  height: 60px;
  width: auto;
}

.social-proof-link {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-primary-light);
}

.social-proof-link:hover {
  color: var(--color-accent);
}

/* ============================================================
   Homepage — Food Highlights
   ============================================================ */
.food-highlights {
  background-color: var(--color-bg);
  padding: 0 5vw 80px;
}

.food-highlights-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.food-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5%;
  margin-bottom: 48px;
}

.food-grid-lead {
  min-width: 0;
}

.food-grid-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--transition-base);
}

.food-grid-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.food-grid-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.food-img-wrap {
  overflow: hidden;
  line-height: 0;
}

.food-img-wrap:hover img {
  transform: scale(1.02);
}

.food-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.food-text h2 {
  margin-bottom: 16px;
  color: var(--color-text);
}

.food-text p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-accent {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  background-color: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-accent:hover {
  background-color: #b04e2a;
  color: var(--color-text);
  transform: scale(1.03);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--color-text-on-primary);
  border: 2px solid var(--color-text-on-primary);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--color-text-on-primary);
  color: var(--color-primary-dark);
}

/* ============================================================
   Homepage — Atmosphere & Community
   ============================================================ */
.atmosphere {
  background-color: var(--color-primary);
  padding: 80px 5vw;
}

.atmosphere-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5%;
  align-items: start;
}

.atmosphere-images {
  min-width: 0;
}

.atmosphere-img-primary {
  width: 100%;
  margin-bottom: 16px;
}

.atmosphere-img-primary img {
  width: 100%;
  height: auto;
}

.atmosphere-gold-rule {
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
  margin-bottom: 16px;
}

.atmosphere-img-secondary {
  width: 70%;
  margin-left: auto;
}

.atmosphere-img-secondary img {
  width: 100%;
  height: auto;
}

.atmosphere-text {
  min-width: 0;
  padding-top: 24px;
}

.atmosphere-text h2 {
  font-size: 28px;
  color: var(--color-bg);
  margin-bottom: 20px;
}

.atmosphere-text p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-bg);
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 24px;
}

.atmosphere-text a {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--color-secondary);
}

.atmosphere-text a:hover {
  color: var(--color-bg);
}

/* Scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay {
  transition-delay: 0.2s;
}

/* ============================================================
   Homepage — CTA / Visit
   ============================================================ */
.cta-visit {
  position: relative;
  background-color: var(--color-primary-dark);
  padding: 80px 5vw;
  text-align: center;
  overflow: hidden;
}

.cta-visit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-visit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.cta-visit-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-visit h2 {
  font-size: 36px;
  color: var(--color-bg);
  margin-bottom: 32px;
}

.cta-address {
  font-family: var(--font-secondary);
  font-size: 20px;
  color: var(--color-bg);
  margin-bottom: 24px;
}

.cta-hours {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-bg);
  opacity: 0.85;
  margin-bottom: 8px;
}

.cta-phone {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 32px;
}

.cta-phone a {
  color: var(--color-bg);
  text-decoration: none;
}

.cta-phone a:hover {
  color: var(--color-secondary);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-primary-dark);
  padding: 56px 5vw 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-bg);
  opacity: 0.7;
  line-height: 1.5;
}

.footer-nav {
  min-width: 0;
}

.footer-nav-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-bg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-bg);
  padding: 4px 0;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--color-secondary);
}

.footer-contact {
  min-width: 0;
}

.footer-contact-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-bg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact p,
.footer-contact a {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-bg);
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--color-secondary);
}

.footer-contact .footer-phone {
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 20px;
  color: var(--color-bg);
  opacity: 0.8;
  transition: opacity var(--transition-base), color var(--transition-base);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--color-secondary);
  padding: 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--color-bg);
  opacity: 0.6;
}

.footer-badge img {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

/* ============================================================
   Page Heroes (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-hero-banner {
  position: relative;
  height: 40vh;
  max-height: 300px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 95, 0.55);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
}

.page-hero-content h1 {
  color: var(--color-bg);
  margin-bottom: 8px;
}

.page-hero-sub {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--color-bg);
  opacity: 0.85;
}

/* Contact hero - shorter */
.page-hero-contact .page-hero-banner {
  height: 35vh;
  max-height: 250px;
}

/* Gallery hero - minimal, no image */
.gallery-hero {
  margin-top: var(--nav-height);
  background-color: var(--color-bg);
  padding: 60px 5vw 40px;
  text-align: center;
}

.gallery-hero h1 {
  color: var(--color-text);
  margin-bottom: 8px;
}

.gallery-hero-sub {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 18px;
  color: var(--color-text-secondary);
}

/* ============================================================
   Menu Page — Hero
   ============================================================ */
.menu-hero {
  position: relative;
  margin-top: var(--nav-height);
  background-color: var(--color-bg);
  overflow: hidden;
  padding: 48px 5vw;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.menu-hero h1 {
  color: var(--color-text);
  margin-bottom: 8px;
}

.menu-hero .menu-founded {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.menu-hero .menu-mission {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* Menu anchor nav */
.menu-anchor-nav {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0 5vw;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-anchor-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.menu-anchor-nav a {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  padding: 14px 16px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.menu-anchor-nav a:hover,
.menu-anchor-nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ============================================================
   Menu Page — Categories & Items
   ============================================================ */
.menu-content {
  background-color: var(--color-bg);
  padding: 0 5vw 80px;
}

.menu-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-category {
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-secondary);
}

.menu-category:last-child {
  border-bottom: none;
}

.menu-category-header {
  margin-bottom: 32px;
}

.menu-category-header h2 {
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.menu-category-header .gold-rule-short {
  margin-bottom: 0;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}

.menu-item {
  padding-bottom: 16px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.menu-item-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.3;
}

.menu-item-price {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  font-family: var(--font-secondary);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.menu-item-note {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  opacity: 0.8;
  margin-top: 4px;
}

/* Shamrock house specialty */
.house-specialty::after {
  content: ' \2618';
  color: var(--color-accent);
  font-size: 16px;
}

/* Menu accent image */
.menu-accent-img {
  float: right;
  width: 180px;
  margin: 0 0 16px 24px;
  line-height: 0;
}

.menu-accent-img img {
  width: 100%;
  height: auto;
}

/* Menu sides note */
.menu-sides-note {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  padding: 16px 0 0;
  border-top: 1px solid var(--color-border);
  margin-top: 16px;
}

.menu-sides-note strong {
  font-weight: 600;
}

/* Wing sauce note */
.menu-sauce-note {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  padding: 12px 16px;
  background-color: var(--color-surface);
  line-height: 1.5;
}

/* Doggy menu card */
.doggy-menu-card {
  background-color: var(--color-surface);
  padding: 32px;
  margin-top: 48px;
  max-width: 500px;
}

.doggy-menu-card h2 {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.doggy-menu-card p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* Consumer advisory */
.consumer-advisory {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* Menu legend */
.menu-legend {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-legend .shamrock-icon {
  color: var(--color-accent);
}

/* ============================================================
   About Page — Origin Story
   ============================================================ */
.origin-story {
  background-color: var(--color-surface);
  padding: 80px 5vw;
}

.origin-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5%;
  align-items: start;
}

.origin-text {
  min-width: 0;
}

.origin-pull-quote {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-text);
  border-left: 3px solid var(--color-secondary);
  padding-left: 24px;
  margin-bottom: 32px;
}

.origin-text .body-text {
  margin-bottom: 16px;
}

.origin-byline {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 24px;
}

.origin-image {
  min-width: 0;
}

.origin-image img {
  width: 100%;
  height: auto;
}

/* ============================================================
   About Page — Community & Values
   ============================================================ */
.community-values {
  background-color: var(--color-bg);
  padding: 80px 5vw;
}

.community-values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.value-block h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.value-block p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.65;
}

.community-body {
  overflow: hidden;
}

.community-body-img {
  float: right;
  width: 250px;
  margin: 0 0 16px 32px;
}

.community-body-img img {
  width: 100%;
  height: auto;
}

.community-body p {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* ============================================================
   About Page — Live Music
   ============================================================ */
.live-music {
  background-color: var(--color-primary);
  padding: 80px 5vw;
}

.live-music-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 5%;
  align-items: center;
}

.live-music-image {
  min-width: 0;
}

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

.live-music-text {
  min-width: 0;
}

.live-music-text h2 {
  font-size: 28px;
  color: var(--color-bg);
  margin-bottom: 20px;
}

.live-music-text p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-bg);
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 24px;
}

.live-music-text .btn-accent {
  color: var(--color-text);
}

/* ============================================================
   Gallery Page — Photo Grid
   ============================================================ */
.gallery-grid {
  padding: 0 5vw 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.masonry {
  columns: 3;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.masonry-item:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.masonry-item.featured {
  /* intentionally no column-span — spanning breaks column-flow and creates gaps */
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  display: block;
  width: 90vw;
  height: 85vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  z-index: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================================
   Contact Page — Info & Map
   ============================================================ */
.contact-content {
  background-color: var(--color-bg);
  padding: 80px 5vw;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5%;
  align-items: start;
}

.contact-info {
  min-width: 0;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-block {
  margin-bottom: 24px;
}

.contact-block-label {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-block p {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-hours {
  font-size: 16px !important;
}

.contact-hours strong {
  font-weight: 600;
}

.contact-phone-link {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-accent) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-phone-link:hover {
  color: #b04e2a !important;
}

.contact-boater-note {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 15px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

/* Contact form */
.contact-form {
  margin-top: 32px;
}

.contact-form h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  background-color: white;
  color: var(--color-text);
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 40px;
  background-color: var(--color-accent);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-submit:hover {
  background-color: #b04e2a;
}

/* Contact map and exterior */
.contact-map-col {
  min-width: 0;
}

.contact-map-col iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-exterior {
  margin-top: 24px;
}

.contact-exterior img {
  width: 100%;
  height: auto;
}

/* ============================================================
   404 Page
   ============================================================ */
.page-404 {
  margin-top: var(--nav-height);
  background-color: var(--color-bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5vw;
}

.page-404-inner {
  max-width: 500px;
}

.page-404 h1 {
  font-size: 80px;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1;
}

.page-404 h2 {
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.page-404 p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (max-width: 900px) {
  .hero-headline {
    font-size: 40px;
  }

  .hero-gradient {
    background: linear-gradient(
      to right,
      rgba(18, 38, 63, 0.7) 0%,
      rgba(18, 38, 63, 0.5) 35%,
      rgba(18, 38, 63, 0.2) 55%,
      transparent 70%
    );
  }

  /* Food grid */
  .food-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .food-grid-lead {
    grid-column: 1 / -1;
  }

  /* Atmosphere */
  .atmosphere-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .atmosphere-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .atmosphere-img-secondary {
    width: 100%;
    margin-left: 0;
  }

  .atmosphere-gold-rule {
    display: none;
  }

  /* Social proof */
  .social-proof-headline {
    font-size: 36px;
  }

  .reviews-grid {
    flex-direction: column;
    gap: 24px;
  }

  /* Origin story */
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .origin-image {
    order: -1;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Live music */
  .live-music-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .live-music-image {
    order: -1;
  }

  /* Gallery */
  .masonry {
    columns: 2;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-col {
    order: -1;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Menu items */
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Responsive — Mobile
   ============================================================ */
@media (max-width: 640px) {
  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  /* Hero */
  .hero-gradient {
    background: linear-gradient(
      to bottom,
      rgba(18, 38, 63, 0.3) 0%,
      rgba(18, 38, 63, 0.6) 100%
    );
  }

  .hero-content {
    padding: 0 5vw 32px;
    text-align: center;
  }

  .hero-headline {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 16px;
    letter-spacing: 0.03em;
  }

  /* Mission */
  .mission-quote {
    font-size: 24px;
  }

  .mission-section {
    padding: 60px 5vw;
  }

  /* Social proof */
  .social-proof-headline {
    font-size: 32px;
  }

  .social-proof {
    padding: 60px 5vw;
  }

  /* Food grid */
  .food-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .food-grid-side {
    flex-direction: row;
    gap: 12px;
  }

  .food-grid-side .food-img-wrap {
    flex: 1;
    min-width: 0;
  }

  .food-text h2 {
    font-size: 26px;
  }

  /* Atmosphere */
  .atmosphere {
    padding: 60px 5vw;
  }

  .atmosphere-images {
    grid-template-columns: 1fr;
  }

  .atmosphere-img-secondary {
    display: none;
  }

  .atmosphere-text h2 {
    font-size: 24px;
  }

  /* CTA */
  .cta-visit {
    padding: 60px 5vw;
  }

  .cta-visit h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Section padding */
  .section-padding {
    padding: 60px 0;
  }

  /* Menu hero */
  .menu-hero {
    padding: 32px 5vw;
  }

  .menu-anchor-nav a {
    padding: 12px 12px;
    font-size: 12px;
  }

  /* Menu accent images hidden on mobile */
  .menu-accent-img {
    display: none;
  }

  /* Page heroes */
  .page-hero-banner {
    height: 30vh;
    min-height: 180px;
  }

  .page-hero-overlay {
    background-color: rgba(30, 58, 95, 0.65);
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  /* Origin pull quote */
  .origin-pull-quote {
    font-size: 20px;
  }

  /* Community body image */
  .community-body-img {
    float: none;
    width: 100%;
    margin: 0 0 16px 0;
  }

  /* Gallery */
  .masonry {
    columns: 1;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* 404 */
  .page-404 h1 {
    font-size: 60px;
  }

  /* Gallery hero */
  .gallery-hero {
    padding: 40px 5vw 24px;
  }

  /* Typography scale down */
  h1, .h1 {
    font-size: 32px;
  }

  h2, .h2 {
    font-size: 26px;
  }

  h3, .h3 {
    font-size: 20px;
  }

  /* Menu category header on mobile */
  .menu-category-header h2 {
    font-size: 24px;
  }

  /* Contact phone */
  .contact-phone-link {
    font-size: 20px;
  }
}

/* ============================================================
   Events Page
   ============================================================ */
.events-section {
  background-color: var(--color-bg);
  padding: 72px 5vw 80px;
}

.events-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.events-header {
  text-align: center;
  margin-bottom: 48px;
}

.events-header h2 {
  margin-bottom: 14px;
}

.events-intro {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Tonight Banner */
.tonight-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 8px;
  padding: 22px 28px;
  margin-bottom: 40px;
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.18);
}

.tonight-label {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.tonight-acts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tonight-acts .event-act {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.tonight-acts .event-time {
  background: rgba(212, 160, 82, 0.2);
  color: var(--color-secondary);
}

.tonight-acts .event-name {
  color: var(--color-text-on-primary);
  font-size: 20px;
  font-weight: 600;
}

/* Events List */
.events-list {
  margin-bottom: 32px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.event-item:first-child {
  border-top: 1px solid var(--color-border);
}

.event-item--today {
  background: rgba(212, 160, 82, 0.09);
  border-left: 3px solid var(--color-secondary);
  padding-left: 16px;
}

.event-date {
  min-width: 120px;
  flex-shrink: 0;
}

.event-dow {
  display: block;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 3px;
}

.event-day {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
  line-height: 1.15;
}

.event-holiday {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
}

.event-acts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
  flex: 1;
}

.event-act {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.event-time {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  background: rgba(200, 90, 50, 0.08);
  padding: 2px 7px;
  border-radius: 3px;
}

.event-name {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
}

.events-note {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.events-note a {
  color: var(--color-primary-light);
  font-weight: 600;
  transition: color var(--transition-base);
}

.events-note a:hover {
  color: var(--color-accent);
}

@media (max-width: 640px) {
  .events-section {
    padding: 48px 5vw 64px;
  }

  .event-item {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }

  .event-item--today {
    padding-left: 13px;
  }

  .event-date {
    min-width: unset;
  }

  .event-day {
    font-size: 16px;
  }

  .tonight-banner {
    padding: 18px 20px;
  }

  .tonight-acts .event-name {
    font-size: 17px;
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-nav,
  .nav-overlay,
  .lightbox {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}
