/* ============================================================
   POOR PARSON'S PUB — Main Stylesheet
   Downtown Murphy, North Carolina
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --charcoal:      #1E1E1E;
  --dark-wood:     #3B2A21;
  --deeper-wood:   #2A1F18;
  --burgundy:      #8B0000;
  --burgundy-dark: #6B0000;
  --gold:          #D4AF37;
  --gold-light:    #E8CC6A;
  --parchment:     #F5F3E7;
  --text-light:    #E0D8C8;
  --text-muted:    #9A8870;
  --border-gold:   rgba(212, 175, 55, 0.25);
  --nav-height:    72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--charcoal);
  color: var(--text-light);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

/* ============================================================
   3. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 14, 10, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .pub-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo-text .pub-location {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-phone {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 7px 18px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-phone:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  text-decoration: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  color: var(--parchment);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #1a1208;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
}

/* ============================================================
   5. SECTION BASE
   ============================================================ */
section {
  padding: 90px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.section-rule::before,
.section-rule::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border-gold);
}

.section-rule span {
  color: var(--gold);
  font-size: 10px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.85;
  text-align: center;
}

/* ============================================================
   6. HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/parsons1.webp');
  background-image: image-set(url('../images/parsons1.webp') type('image/webp'), url('../images/parsons1.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 4, 0.40) 0%,
    rgba(8, 6, 4, 0.55) 50%,
    rgba(12, 8, 5, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 22px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-hours {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   7. FEATURED DISHES
   ============================================================ */
.featured {
  background: #121008;
  padding: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 28px;
}

.featured-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.featured-card-title {
  font-family: 'Cinzel', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 8px;
}

.featured-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   8. ABOUT / CHEF SPLIT
   ============================================================ */
.about-split {
  padding: 0;
  background: var(--deeper-wood);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 80px 64px;
  background: #231910;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-content .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* ============================================================
   9. ATMOSPHERE GALLERY (3-up strip)
   ============================================================ */
.gallery-strip {
  padding: 0;
  background: #0C0A08;
}

.gallery-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 420px;
  gap: 3px;
}

.gallery-strip-item {
  overflow: hidden;
  position: relative;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   10. HOURS & CONTACT
   ============================================================ */
.hours-location {
  background: #161412;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  background: #1C1916;
  border: 1px solid var(--border-gold);
  padding: 48px 42px;
  border-radius: 2px;
}

.info-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-gold);
}

/* Hours rows */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.07);
  font-size: 15px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hours-time {
  color: var(--parchment);
  font-size: 14px;
}

.hours-closed {
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
}

.hours-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* Contact items */
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

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

.contact-icon {
  color: var(--gold);
  font-size: 17px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail strong {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 16px;
  color: var(--parchment);
  font-style: normal;
}

.contact-detail a:hover {
  color: var(--gold);
}

.reservation-cta {
  margin-top: 28px;
  background: rgba(139, 0, 0, 0.14);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 3px;
  padding: 18px 22px;
  line-height: 1.6;
}

.reservation-cta p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.reservation-cta .btn {
  font-size: 11px;
  padding: 12px 24px;
}

/* ============================================================
   11. REVIEWS
   ============================================================ */
.reviews {
  background: #0E0C0A;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #1C1916;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 36px 28px;
  text-align: left;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.review-author {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.review-source {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.55;
  margin-top: 2px;
}

/* ============================================================
   12. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  margin-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,6,4,0.3) 0%, rgba(8,6,4,0.88) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-content .section-label {
  text-align: left;
  margin-bottom: 10px;
}

.page-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.1;
}

/* ============================================================
   13. MENU PAGE
   ============================================================ */
.menu-page {
  background: #141210;
}

.menu-intro-bar {
  background: #0C0A08;
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.menu-intro-bar p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.menu-intro-bar p + p {
  margin-top: 10px;
}

.menu-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-gold);
}

.menu-section:last-of-type {
  border-bottom: none;
}

.menu-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.menu-section-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 0;
}

.menu-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.09);
}

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

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

.menu-item-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.menu-item-price {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* Single-col layout for centered items */
.menu-items-single {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

/* Upgrade / add-on box */
.menu-upgrade-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 32px 42px;
  text-align: center;
  margin-top: 44px;
}

.menu-upgrade-box h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-upgrade-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.menu-fine-print {
  text-align: center;
  padding: 48px 0 60px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   14. ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--charcoal);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-text .section-label {
  text-align: left;
}

.about-story-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-story-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-story-image {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-quote {
  background: #1C1916;
  border-left: 3px solid var(--gold);
  padding: 28px 34px;
  margin: 36px 0;
  border-radius: 0 2px 2px 0;
}

.owner-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.owner-quote cite {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

.about-grill {
  background: var(--deeper-wood);
  padding: 0;
}

.about-grill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-grill-image {
  overflow: hidden;
}

.about-grill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grill-content {
  padding: 80px 64px;
  background: #1C1510;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-grill-content .section-label {
  text-align: left;
}

.about-grill-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-grill-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-photo-row {
  background: #0C0A08;
  padding: 0;
}

.about-photo-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 360px;
  gap: 3px;
}

.about-photo-row-item {
  overflow: hidden;
}

.about-photo-row-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-photo-row-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.contact-page-section {
  background: var(--charcoal);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-box {
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  overflow: hidden;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: grayscale(20%);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: #090705;
  border-top: 1px solid var(--border-gold);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 230px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--parchment);
}

.footer-col address,
.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
  font-style: normal;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-gold);
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ============================================================
   17. UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ============================================================
   18. MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-grid,
  .about-grill-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-grill-image {
    height: 360px;
  }

  .gallery-strip-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .gallery-strip-grid .gallery-strip-item {
    height: 280px;
  }

  .gallery-strip-grid .gallery-strip-item:first-child {
    grid-column: span 2;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-row-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .about-photo-row-item {
    height: 260px;
  }

  .about-photo-row-grid .about-photo-row-item:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 60px 0;
  }

  /* Nav mobile */
  .site-nav {
    padding: 0 24px;
    height: var(--nav-height);
  }

  .nav-logo-text .pub-location {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(12, 9, 6, 0.99);
    padding: 16px 0;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-gold);
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-bg {
    background-attachment: scroll;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Featured */
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    aspect-ratio: 16 / 9;
  }

  /* Hours */
  .hours-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-upgrade-box {
    padding: 24px;
  }

  /* About */
  .about-content {
    padding: 44px 28px;
  }

  .about-grill-content {
    padding: 44px 28px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  /* Page hero */
  .page-hero {
    height: 240px;
    padding-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

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

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

  .about-photo-row-item {
    height: 220px;
  }

  .about-photo-row-grid .about-photo-row-item:first-child {
    grid-column: span 1;
  }
}

/* ============================================================
   19. PAGE LOAD & ANIMATIONS
   ============================================================ */

/* Body fade-in on load — opacity set via JS to avoid NO_FCP in crawlers */
body.page-loading {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.page-loaded {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Grain / noise texture overlay — aged parchment luxury feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Hero entrance — staggered text reveal */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow   { animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero-content h1 { animation: heroFadeUp 0.9s  cubic-bezier(0.22, 1, 0.36, 1) 0.45s both; }
.hero-divider   { animation: heroFadeUp 0.6s  cubic-bezier(0.22, 1, 0.36, 1) 0.65s both; }
.hero-subtitle  { animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both; }
.hero-hours     { animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.92s both; }
.hero-ctas      { animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.08s both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   20. NAV SCROLL SHRINK
   ============================================================ */
.site-nav {
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  height: 58px;
  background: rgba(8, 6, 4, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.site-nav.scrolled .nav-logo img {
  height: 40px;
  transition: height 0.3s ease;
}

/* ============================================================
   21. ENHANCED DETAILS
   ============================================================ */

/* Large decorative quote on review cards */
.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: 8px;
  left: 18px;
  pointer-events: none;
  user-select: none;
}

/* Gold bottom-border sweep on featured cards */
.featured-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.featured-card:hover::after {
  width: 100%;
}

/* Ornate section rule — replace plain diamond with fleur */
.section-rule::before,
.section-rule::after {
  width: 80px;
  background: linear-gradient(to var(--_dir, right), transparent, var(--border-gold));
}

.section-rule::before { --_dir: right; }
.section-rule::after  { --_dir: left; }

/* Subtle gold glow on primary buttons */
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(139, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

/* Menu item hover highlight */
.menu-item {
  transition: background 0.2s;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 2px;
}

.menu-item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.menu-item:hover .menu-item-name {
  color: var(--gold-light);
  transition: color 0.2s;
}

/* Info box lift on hover */
.info-box {
  transition: border-color 0.3s, box-shadow 0.3s;
}

.info-box:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* Page hero parallax depth — text fade in from below */
.page-hero-content .section-label,
.page-hero-content h1 {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.page-hero-content h1 {
  animation-delay: 0.35s;
}

/* Footer link hover — slide in underline */
.footer-col ul li a {
  position: relative;
  padding-bottom: 2px;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-eyebrow,
  .hero-content h1,
  .hero-divider,
  .hero-subtitle,
  .hero-hours,
  .hero-ctas,
  .page-hero-content .section-label,
  .page-hero-content h1 {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  body {
    opacity: 1;
    transition: none;
  }
}
