/* ==========================================================================
   7EVENTY1 — SUSWADU
   Bangladeshi Restaurant & Takeaway, Appleby-in-Westmorland
   Design: Tamarind-inspired warm cream palette throughout
   Background: #f5f0eb — identified from Tamarind Restaurant CSS
   ========================================================================== */

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

:root {
  /* --- Background & Surface --- */
  --color-bg:        #f5f0eb;   /* Tamarind warm cream — primary background */
  --color-bg-alt:    #faf6f0;   /* Lighter warm — section alternates */
  --color-surface:   #ede7de;   /* Warm card/box backgrounds */
  --color-surface-lt:#ffffff;   /* Pure white — elevated cards */

  /* --- Brand Colours --- */
  --color-gold:      #c8913a;
  --color-gold-lt:   #e0b56c;
  --color-gold-dk:   #8a5d1f;   /* Links & emphasis — WCAG AA 5.1:1 */
  --color-tiger:     #e67e22;
  --color-green:     #4a7c59;

  /* --- Cream (used in dark sections only: hero, header, footer) --- */
  --color-cream:     #f5f0e8;
  --color-cream-dk:  #e8e0d4;
  --color-warm:      #faf6f0;
  --color-white:     #ffffff;

  /* --- Text (dark-on-light scheme) --- */
  --color-text:      #3d3529;   /* Main dark brown */
  --color-text-dim:  #6b5e4f;   /* Secondary text — WCAG AA 5.5:1 */
  --color-text-dark: #3d3529;   /* Dark headings */
  --color-text-mid:  #5a4e3f;   /* Medium body text — WCAG AA 7.1:1 */

  /* --- Type --- */
  --font-display:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:       'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dk); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.2;
}

strong { color: var(--color-text-dark); }
em { color: var(--color-gold-dk); font-style: italic; }

.outer-wrap { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ---------- WARM CREAM SECTIONS (slightly lighter variant) ---------- */
.section-warm {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.section-warm h2,
.section-warm h3,
.section-warm h4 {
  color: var(--color-text-dark);
}
.section-warm p {
  color: var(--color-text-mid);
}
.section-warm .section-header p {
  color: var(--color-text-mid);
}
.section-warm .divider {
  background: var(--color-gold);
}
.section-warm .btn {
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
}
.section-warm .btn:hover {
  background: var(--color-text-dark);
  color: var(--color-bg-alt);
  border-color: var(--color-text-dark);
}
.section-warm .btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.section-warm .btn-primary:hover {
  background: var(--color-gold-dk);
  border-color: var(--color-gold-dk);
}
.section-warm .about-text .signature {
  color: var(--color-gold-dk);
}
.section-warm .about-image::after {
  border-color: var(--color-gold);
}
.section-warm em {
  color: var(--color-gold-dk);
}

/* Warm cream menu cards */
.section-warm .menu-card {
  background: var(--color-surface-lt);
  box-shadow: 0 2px 20px rgba(61,53,41,0.07);
}
.section-warm .menu-card-body h4 {
  color: var(--color-text-dark);
}
.section-warm .menu-card-body p {
  color: var(--color-text-mid);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--color-text-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader img { width: 140px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(61, 53, 41, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 145, 58, 0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
}
.header-logo { display: none; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 14px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--color-cream);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--color-gold); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--color-gold); }
.main-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  border: none;
  cursor: pointer;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-gold-lt) !important; color: var(--color-white) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 28px; height: 1.5px;
  background: var(--color-cream);
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(61, 53, 41, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay nav { text-align: center; }
.mobile-menu-overlay nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-cream);
  margin: 20px 0;
  letter-spacing: 0.05em;
}
.mobile-menu-overlay nav a:hover { color: var(--color-gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,22,12,0.68) 15%, rgba(30,22,12,0.2) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-logo {
  width: 510px;
  max-width: 85vw;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero-sub {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* Hero headings stay cream (over dark photo) */
.hero h1, .hero h2, .hero h3 { color: var(--color-cream); }
.page-hero h1 { color: var(--color-cream); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { background: var(--color-gold); color: var(--color-white); }
.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-lt);
  border-color: var(--color-gold-lt);
  color: var(--color-white);
}

/* Buttons in hero sit over dark photo — keep cream border variant */
.hero .btn {
  border-color: var(--color-cream);
  color: var(--color-cream);
}
.hero .btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-white); }
.hero .btn-primary { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-white); }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  text-align: center;
}
.scroll-indicator span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 10px;
}
.scroll-indicator .arrow {
  width: 1px; height: 40px;
  background: var(--color-gold);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}
.section-header .divider {
  width: 50px; height: 1px;
  background: var(--color-gold);
  margin: 0 auto 20px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-dim);
  font-size: 0.95rem;
}

/* ---------- FULL-WIDTH IMAGE BREAK ---------- */
.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.image-break::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(30,22,12,0.25);
}
@media (max-width: 768px) {
  .image-break { background-attachment: scroll; height: 40vh; min-height: 250px; }
}

/* ---------- TWO-COLUMN GRID ---------- */
.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.grid-block {
  position: relative;
  overflow: hidden;
}
.grid-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.grid-block:hover img { transform: scale(1.03); }

.grid-block-text {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 70px 60px;
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.grid-block-text h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}
.grid-block-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-mid);
}
.grid-block-text em {
  color: var(--color-gold-dk);
  font-style: italic;
}
.grid-block-text .btn {
  align-self: flex-start;
  margin-top: 10px;
  border-color: var(--color-gold);
  color: var(--color-gold-dk);
}
.grid-block-text .btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.grid-block-text strong {
  color: var(--color-gold-dk);
}

/* Image aspect ratio helpers */
.img-portrait { aspect-ratio: 2/3; }
.img-landscape { aspect-ratio: 3/2; }
.img-square { aspect-ratio: 1/1; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--color-gold);
  z-index: -1;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
}
.about-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--color-text-mid);
}
.about-text .signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold-dk);
  font-size: 1.1rem;
  margin-top: 24px;
}

/* ---------- FOOD / MENU PREVIEW ---------- */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: var(--color-surface-lt);
  box-shadow: 0 2px 16px rgba(61,53,41,0.07);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(61,53,41,0.12);
}
.menu-card-img { overflow: hidden; aspect-ratio: 4/3; }
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 28px 24px; }
.menu-card-body h4 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}
.menu-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,22,12,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none;
  color: var(--color-cream);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: var(--color-cream); font-size: 2rem;
  cursor: pointer; padding: 20px;
}
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }

/* ---------- INFO STRIP ---------- */
.info-strip {
  background: var(--color-surface);
  border-top: 1px solid rgba(200,145,58,0.15);
  border-bottom: 1px solid rgba(200,145,58,0.15);
  padding: 60px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.info-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dk);
  margin-bottom: 14px;
}
.info-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-mid);
}
.info-item strong { color: var(--color-text-dark); }
.info-item a { color: var(--color-text-mid); }
.info-item a:hover { color: var(--color-gold); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border: 1px solid rgba(200,145,58,0.25);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-gold);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* Contact info boxes */
.contact-info-box {
  margin-top: 20px;
  padding: 30px;
  background: var(--color-surface);
  border-left: 3px solid var(--color-gold);
}
.contact-info-box h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dk);
  margin-bottom: 14px;
}
.contact-info-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-mid);
}
.contact-info-box p + p { margin-top: 12px; }

/* Map */
.map-wrap {
  width: 100%; height: 400px;
  background: var(--color-surface);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(0.1) saturate(0.9);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #2a2018;
  border-top: 1px solid rgba(200,145,58,0.15);
  padding: 80px 0 40px;
  text-align: center;
}
.footer-logo { width: 320px; max-width: 85vw; margin: 0 auto 30px; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-cream-dk);
}
.footer-address a { color: var(--color-cream-dk); }
.footer-address a:hover { color: var(--color-gold); }
.footer-hours {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-hours strong {
  color: var(--color-cream);
  font-weight: 400;
}
.footer-divider {
  width: 40px; height: 1px;
  background: var(--color-gold);
  margin: 20px auto;
}
.footer-links { margin-bottom: 30px; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin: 0 16px;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.1em;
}

/* ---------- MOBILE BOTTOM BAR ---------- */
.mobile-footer-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #2a2018;
  border-top: 1px solid rgba(200,145,58,0.2);
}
.mobile-footer-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
}
.mobile-footer-bar a.highlight {
  background: var(--color-gold);
  color: var(--color-white);
}

/* ---------- PAGE HEROES (subpages) ---------- */
.page-hero {
  position: relative;
  height: 50vh; min-height: 350px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,22,12,0.75) 15%, rgba(30,22,12,0.35) 100%);
}
.page-hero h1 {
  position: relative; z-index: 2;
  font-size: 3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
}

/* ---------- MENU PAGE ---------- */
.menu-section { margin-bottom: 60px; }
.menu-section h3 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,145,58,0.25);
  margin-bottom: 30px;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(61,53,41,0.07);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-text-dark);
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 4px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold-dk);
  white-space: nowrap;
  margin-left: 20px;
}
.menu-item-details { flex: 1; }

.menu-notice {
  background: var(--color-surface);
  padding: 20px 28px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--color-text-mid);
  border-left: 3px solid var(--color-gold);
}

/* ---------- CASH-ONLY NOTICE ---------- */
.cash-notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-surface);
  border: 1px solid rgba(200,145,58,0.25);
  border-left: 3px solid var(--color-gold);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.cash-notice-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
}
.cash-notice-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.cash-notice-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: 8px;
}
.cash-atm {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--color-gold-dk);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .cash-notice { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ---------- VEGAN & VEGETARIAN BADGE ---------- */
.veg-friendly-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.veg-friendly-badge svg {
  flex-shrink: 0;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-two-col { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-footer-bar { display: flex; }

  .hero-logo { width: 360px; }
  .hero-tagline { font-size: 0.9rem; }
  .page-hero h1 { font-size: 2rem; }

  section { padding: 60px 0; }
  .outer-wrap { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  .section-header h2 { font-size: 1.8rem; }

  .grid-block-text { padding: 40px 24px; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 280px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-item-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-item-price { white-space: normal; margin-left: 0; }
}
