/* ============================================================
   Pat's Place Louisiana Soul Food Cuisine
   styles.css — mobile-first
   ============================================================ */

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ---- Design Tokens --------------------------------------- */
:root {
  --red:          #8B1A1A;
  --red-dark:     #6B1010;
  --red-muted:    #A53030;
  --gold:         #C4873F;
  --gold-light:   #D4A96A;
  --gold-pale:    #F5E4C4;
  --cream:        #FBF5EA;
  --cream-dark:   #F0E2C8;
  --cream-mid:    #F7EED8;
  --text:         #2C1206;
  --text-mid:     #5C3318;
  --text-light:   #9C7355;
  --border:       #E3CEAA;
  --white:        #FFFFFF;

  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font:    'Inter', sans-serif;

  --container:    1100px;
  --radius:       10px;
  --shadow-sm:    0 1px 4px rgba(44,18,6,0.08);
  --shadow-md:    0 4px 16px rgba(44,18,6,0.12);
  --shadow-lg:    0 8px 32px rgba(44,18,6,0.15);

  --section-v:    88px;
}

/* ---- Utility --------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s,
              transform 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,26,26,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

/* ================================================================
   NAV
   ================================================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-wrapper.scrolled {
  background: rgba(251,245,234,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-main {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  transition: color 0.3s;
}
.nav-wrapper.scrolled .nav-logo-main { color: var(--text); }
.nav-wrapper.scrolled .nav-logo-sub  { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-wrapper.scrolled .nav-links a { color: var(--text-mid); }
.nav-wrapper.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.4rem 1rem;
  border-radius: 7px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s, background 0.3s;
}
.nav-wrapper.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?auto=format&fit=crop&w=1600&q=80');
  /* SWAP: Replace with a high-quality photo of your actual food or restauran t */
  background-size: cover;
  background-position: center;
  background-color: #3D1A0A; /* fallback */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,8,2,0.82) 0%,
    rgba(60,15,5,0.70) 50%,
    rgba(30,8,2,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px; /* nav offset */
  padding-bottom: 60px;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.hero-sub {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 460px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-badge-dot { color: var(--gold-light); }

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: var(--section-v) 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title {
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 1.025rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.75rem; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--cream-dark);
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}

.about-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,8,2,0.8), transparent);
  padding: 2rem 1.5rem 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-style: italic;
}

/* ================================================================
   GALLERY STRIP
   ================================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 240px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ================================================================
   DAILY SPECIAL BANNER
   ================================================================ */
.special-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
}
.special-banner p {
  font-size: 0.9rem;
  font-weight: 500;
}
.special-banner strong {
  font-family: var(--heading-font);
  font-size: 1rem;
}
.special-label {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* ================================================================
   MENU
   ================================================================ */
.menu {
  padding: var(--section-v) 0;
  background: var(--cream-mid);
}
.menu-header {
  margin-bottom: 3rem;
}
.menu-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.menu-category {
  margin-bottom: 3rem;
}
.menu-category:last-child { margin-bottom: 0; }

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.menu-category-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.menu-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.menu-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.45;
}
.menu-item-price {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.badge-popular {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}
.badge-special {
  background: #FEE2E2;
  color: var(--red);
  border: 1px solid #FECACA;
}

/* Sides — single column list style */
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.menu-list-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.menu-list-item-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}
.menu-list-item-price {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
}

.menu-combo-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold-pale);
  border: 1px solid #E8C87A;
  border-radius: 8px;
  font-size: 0.83rem;
  color: #6B4C10;
}
.menu-combo-note strong { color: #5A3C08; }

/* ---- Daily Specials Day Cards ---------------------------- */
.specials-intro {
  margin-bottom: 0.5rem;
}
.specials-cornbread-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  padding: 0.6rem 0.9rem;
  background: var(--gold-pale);
  border: 1px solid #E8C87A;
  border-radius: 7px;
  display: inline-block;
}
.specials-cornbread-note strong { color: #5A3C08; }

.specials-day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.specials-day-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.specials-day-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.specials-day-card.today {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-pale), var(--shadow-md);
}

.specials-day-header {
  background: var(--cream-dark);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.specials-day-card.today .specials-day-header {
  background: var(--red);
}
.specials-day-name {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.specials-day-card.today .specials-day-name {
  color: var(--white);
}
.specials-today-badge {
  display: none;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--text);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.specials-day-card.today .specials-today-badge { display: inline-block; }

.specials-list {
  list-style: none;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.specials-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.specials-list li .s-name {
  flex: 1;
  color: var(--text-mid);
}
.specials-list li > span:not(.s-name) {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.specials-list li.oxtail {
  padding-top: 0.4rem;
  border-top: 1px dashed var(--border);
  margin-top: 0.2rem;
}

/* ---- Catering Section ------------------------------------ */
.catering {
  padding: var(--section-v) 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.catering-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.catering-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.catering-icon svg {
  width: 26px;
  height: 26px;
}
.catering-text .section-title { margin-bottom: 0.6rem; }
.catering-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}
.catering-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.catering-cta-phone {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.catering-cta-phone:hover { color: var(--red-dark); }
.catering-cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews {
  padding: var(--section-v) 0;
  background: var(--red);
}
.reviews .section-label { color: var(--gold-light); }
.reviews .section-title { color: var(--white); }
.reviews .section-subtitle { color: rgba(255,255,255,0.7); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.12); }

.review-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.review-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.review-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-author-info {}
.review-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.review-author-platform {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* ================================================================
   HOURS & LOCATION
   ================================================================ */
.hours {
  padding: var(--section-v) 0;
  background: var(--cream);
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.hours-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--text); }
.hours-time { color: var(--text-mid); }
.hours-closed {
  color: var(--text-light);
  font-style: italic;
}
.hours-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
  background: #DCFCE7;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  margin-top: 1.25rem;
}
.hours-open-dot {
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
}

.hours-info-block {
  margin-top: 1.5rem;
}
.hours-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.hours-info-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hours-info-icon svg {
  width: 18px;
  height: 18px;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-placeholder {
  width: 100%;
  height: 420px;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
}
.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.map-placeholder p {
  font-size: 0.85rem;
  text-align: center;
  max-width: 240px;
  line-height: 1.5;
}
/* Swap above .map-placeholder with a real <iframe> embed:
   <iframe src="https://maps.google.com/..." width="100%" height="420" style="border:0" allowfullscreen loading="lazy"></iframe> */

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #1C0A03;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 1rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 260px;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .specials-day-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap {
    aspect-ratio: 16/9;
    max-height: 340px;
  }
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .catering-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .catering-cta {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root { --section-v: 60px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(251,245,234,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0 1rem;
    display: none;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.nav-cta) {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-mid) !important;
    font-size: 0.95rem;
  }
  .nav-cta {
    display: block !important;
    margin: 0.5rem 1.5rem 0 !important;
    text-align: center !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px !important;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 320px;
  }

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

  .menu-grid,
  .menu-list {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    text-align: center;
  }
  .gallery-strip {
    height: 200px;
  }
  .specials-day-grid {
    grid-template-columns: 1fr;
  }
}
