/* =========================================================
   Deli Nerds — Main Stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   Design Tokens / Custom Properties
   --------------------------------------------------------- */
:root {
  /* Colors */
  --green: #3a7052;
  --green-dark: #1e4532;
  --green-light: #4a8a64;
  --charcoal: #2d2e2f;
  --black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gold: #c8a96e;
  --gold-light: #e8cfa0;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9e9e9e;
  --gray-600: #666666;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-headline: 'Bebas Neue', 'Arial Black', Impact, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --container: 1200px;
}

/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

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

/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------------------------------------------------------
   Header / Navigation
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green-dark);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(30, 69, 50, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.logo-wordmark {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

.btn-green:hover {
  background: var(--green-dark);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

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

/* ---------------------------------------------------------
   Hamburger / Mobile Nav
   --------------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-header nav#nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--green-dark);
    z-index: 105;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-header.nav-open nav#nav-links {
    display: flex;
  }

  .site-header nav#nav-links .nav-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .site-header nav#nav-links .nav-links a {
    font-size: 1.5rem;
  }
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 69, 50, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   Ticker / Scrolling Banner
   --------------------------------------------------------- */
.ticker-wrap {
  background: var(--green);
  color: var(--white);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0 2rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------------------------------------------------------
   Features Strip (3 columns)
   --------------------------------------------------------- */
.features {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.feature-item {
  padding: var(--space-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Split Sections (About, Delivery, Dine-in)
   --------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.split-content {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content.bg-green {
  background: var(--green-dark);
  color: var(--white);
}

.split-content.bg-off-white {
  background: var(--off-white);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.split-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.split-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-image {
    min-height: 280px;
  }

  .split-content {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* ---------------------------------------------------------
   Menu Preview
   --------------------------------------------------------- */
.menu-preview {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--green-dark);
}

.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.menu-card {
  background: var(--off-white);
  overflow: hidden;
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card h3 {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.text-center {
  text-align: center;
}

/* ---------------------------------------------------------
   Reviews
   --------------------------------------------------------- */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--green-dark);
  color: var(--white);
}

.reviews .section-header h2 {
  color: var(--white);
}

.reviews .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.reviews-tagline {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.95rem;
  opacity: 0.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Location / Hours
   --------------------------------------------------------- */
.location {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.location h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table tr.today {
  background: rgba(58, 112, 82, 0.08);
}

.location-details {
  margin-top: 2rem;
}

.location-details p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.location-details a {
  color: var(--green);
}

.location-map {
  background: var(--gray-200);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

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

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   Menu Page Specific Styles
   --------------------------------------------------------- */
.menu-page {
  padding-top: 70px;
}

.menu-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.menu-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
}

.menu-hero p {
  opacity: 0.8;
  font-size: 1.1rem;
}

.category-tabs {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: var(--white);
  border-bottom: 2px solid var(--green);
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.category-tabs ul {
  display: flex;
  list-style: none;
}

.category-tabs a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.category-tabs a:hover,
.category-tabs a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.menu-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.menu-section h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.menu-section-desc {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
}

.menu-item {
  background: var(--white);
  padding: 1.25rem;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

.menu-cta-bar {
  background: var(--gold);
  padding: 1rem var(--space-sm);
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 50;
}

.menu-cta-bar p {
  display: inline;
  margin-right: 1.5rem;
  font-weight: 600;
}

/* ---------------------------------------------------------
   Catering Page Specific Styles
   --------------------------------------------------------- */
.catering-page {
  padding-top: 70px;
}

.catering-hero {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
  overflow: hidden;
}

.catering-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/restaurant-photo-1.jpg') center / cover;
  opacity: 0.2;
}

.catering-hero > * {
  position: relative;
  z-index: 1;
}

.catering-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1rem;
}

.catering-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.packages {
  padding: var(--space-2xl) 0;
  background: var(--off-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: var(--white);
  padding: 2rem;
  border-top: 4px solid var(--gold);
}

.package-card h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.package-card ul {
  list-style: none;
}

.package-card li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 0.5rem;
}

.package-card li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.catering-why {
  padding: var(--space-2xl) 0;
}

.catering-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .catering-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catering-cta {
  background: var(--gold);
  padding: var(--space-xl) 0;
  text-align: center;
}

.catering-cta h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.catering-cta p {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* ---------------------------------------------------------
   Utilities
   --------------------------------------------------------- */
.mt-sm {
  margin-top: var(--space-sm);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-top {
  padding-top: 70px;
}

/* ---------------------------------------------------------
   Navigation Updates — Catering Dropdown + Updated Nav
   --------------------------------------------------------- */

.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-top: 3px solid var(--gold);
  list-style: none;
  z-index: 200;
}

.nav-links .dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
}

.nav-links .dropdown li a:hover {
  background: var(--off-white);
  color: var(--green);
}

.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  display: block;
}

.nav-links .nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Gold button variant */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--charcoal);
}

/* White outline button */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

/* Green button */
.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

/* ---------------------------------------------------------
   Page Hero (used on About, Contact, etc.)
   --------------------------------------------------------- */
.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.page-hero--green {
  background: var(--green-dark);
  color: var(--white);
}

.page-hero .hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   About Page
   --------------------------------------------------------- */
.about-story {
  padding: var(--space-2xl) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story-img {
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.about-story-text h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-story-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-img {
    height: 280px;
  }
}

.about-values {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-top: 4px solid var(--gold);
}

.value-icon {
  color: var(--green);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

.about-food {
  padding: var(--space-2xl) 0;
}

.about-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-food-text h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-food-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-food-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .about-food-grid { grid-template-columns: 1fr; }
  .about-food-img { height: 260px; order: -1; }
}

/* ---------------------------------------------------------
   CTA Banners
   --------------------------------------------------------- */
.cta-banner {
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner--green {
  background: var(--green-dark);
  color: var(--white);
}

.cta-banner--gold {
  background: var(--gold);
  color: var(--charcoal);
}

.cta-banner h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   Contact Page
   --------------------------------------------------------- */
.contact-main {
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-block h2 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.contact-block p {
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.contact-list li svg {
  color: var(--green);
  flex-shrink: 0;
}

.contact-list a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.contact-list a:hover {
  text-decoration-color: var(--green);
  color: var(--green);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 4px;
}

/* ---------------------------------------------------------
   Footer Updates
   --------------------------------------------------------- */
.footer-contact {
  /* same as footer-nav */
}

.footer-contact h4 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-addr,
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Menu Item Price Display
   --------------------------------------------------------- */
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.menu-item-prices span {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   Catering Menu Page Specific
   --------------------------------------------------------- */
.menu-hero--catering {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2218 100%);
}

.catering-menu-note {
  background: #fffbf2;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 1rem 0;
}

.catering-menu-note p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.catering-menu-note a {
  color: var(--green);
  font-weight: 600;
}

/* ---------------------------------------------------------
   Reviews compact variant
   --------------------------------------------------------- */
.reviews--compact {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

/* ---------------------------------------------------------
   Mobile Nav: dropdown in hamburger menu
   --------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,0.05);
    display: none;
    padding-left: 1rem;
  }

  .nav-links .has-dropdown.open .dropdown {
    display: block;
  }

  .nav-links .nav-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

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