
/* ─── RESET & VARIABLES ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fdf6ec;
  --warm-white: #fff9f2;
  --amber:      #c8832a;
  --amber-dark: #9f631a;
  --amber-light:#f0b554;
  --brown:      #3d2b1f;
  --brown-mid:  #6b4226;
  --charcoal:   #2a2118;
  --gray:       #7a6a5a;
  --border:     #e8d9c4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 100px);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--brown); line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ───────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { font-family: var(--font-body); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); color: var(--brown); line-height: 1.18; font-weight: 900; }
.section-title em { font-style: italic; color: var(--amber); }
.divider { width: 50px; height: 3px; background: var(--amber); border-radius: 2px; margin: 18px 0 28px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 2px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .25s ease; }
.btn-primary { background: var(--amber); color: #fff; border: 2px solid var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--brown); }
.btn-dark { background: transparent; color: var(--brown); border: 2px solid var(--brown); }
.btn-dark:hover { background: var(--brown); color: #fff; }

/* ─── IMAGE SYSTEM ──────────────────────────────────── */
/*
  ╔══════════════════════════════════════════════════╗
  ║  HOW TO SWAP IMAGES                              ║
  ║  Each image zone has a comment showing the       ║
  ║  <img> tag to paste in. Just replace the         ║
  ║  .img-placeholder div with that <img> tag.       ║
  ╚══════════════════════════════════════════════════╝
*/
.img-wrap { position: relative; overflow: hidden; background: var(--border); }
.img-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #e8d5b8 0%, #d4b896 100%); color: var(--brown-mid); font-size: 13px; font-family: var(--font-body); text-align: center; padding: 20px; }
.img-placeholder svg { opacity: .4; }
.img-placeholder span { opacity: .6; font-style: italic; }

/* ─── TOPBAR ────────────────────────────────────────── */
.topbar { background: var(--brown); color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .05em; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--amber-light); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--warm-white); border-bottom: 1px solid var(--border); height: var(--nav-h); box-shadow: 0 2px 16px rgba(61,43,31,.07); transition: box-shadow .3s; }
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); }
.logo-icon { width: 44px; height: 44px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; }
.logo-text { line-height: 1.15; }
.logo-name { font-size: 20px; font-weight: 900; color: var(--brown); letter-spacing: -.01em; }
.logo-sub { font-size: 10px; font-weight: 400; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; font-family: var(--font-body); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brown); position: relative; padding-bottom: 3px; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--amber); transition: width .25s ease; }
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all .3s; }
.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); }
.mobile-menu { display: none; background: var(--warm-white); border-bottom: 2px solid var(--amber); padding: 20px 24px 28px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu ul a { display: block; padding: 12px 0; font-size: 16px; font-weight: 700; color: var(--brown); border-bottom: 1px solid var(--border); letter-spacing: .04em; text-transform: uppercase; }
.mobile-menu ul a:hover { color: var(--amber); }
.mobile-menu .btn { margin-top: 20px; display: block; text-align: center; }

/* ─── HERO ───────────────────────────────────────────── */
.hero { position: relative; height: clamp(520px, 80vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg .img-placeholder { background: linear-gradient(160deg, #c8832a 0%, #3d2b1f 60%, #1a0f08 100%); color: rgba(255,255,255,.25); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,10,5,.72) 0%, rgba(20,10,5,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 640px; animation: fadeUp .8s ease both; }
.hero-badge { display: inline-block; background: var(--amber); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 7px 18px; border-radius: 2px; margin-bottom: 22px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(42px, 7vw, 80px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--amber-light); }
.hero p { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-hours { position: absolute; z-index: 2; right: max(24px, calc((100% - 1160px) / 2 + 24px)); bottom: clamp(24px, 5vw, 60px); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 20px 28px; color: #fff; text-align: center; }
.hero-hours h4 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 10px; }
.hero-hours p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.8; }

/* ─── FEATURES STRIP ─────────────────────────────────── */
.features-strip { background: var(--brown); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.08); display: flex; align-items: flex-start; gap: 16px; }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feature-text h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ─── ABOUT ──────────────────────────────────────────── */
#about { padding: var(--section-pad) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-imgs { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; border-radius: 4px; overflow: hidden; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: 4px; overflow: hidden; border: 6px solid var(--cream); }
.about-stamp { position: absolute; top: 50%; left: 58%; transform: translate(-50%, -50%); z-index: 3; background: var(--amber); color: #fff; border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.18); }
.about-stamp strong { font-size: 26px; font-weight: 900; line-height: 1; }
.about-stamp span { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.about-text p { color: var(--gray); margin-bottom: 18px; font-size: 16px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 36px; }
.fact-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 18px 20px; }
.fact-card h3 { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--amber); line-height: 1; }
.fact-card p { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ================================================================
   MENU HERO
   ================================================================ */
.menu-hero {
  background: var(--brown);
  background-image: linear-gradient(135deg, #3d2b1f 0%, #6b4226 100%);
  padding: 56px 24px 52px;
  text-align: center;
}

.menu-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.menu-hero-title em {
  font-style: italic;
  color: var(--amber-light);
}

.menu-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Section wrapper ── */
.specialties {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}

/* ── Header (centered, matches existing pattern) ── */
.specialties-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Three-column card grid ── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Individual card ── */
.specialty-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

.specialty-item:hover {
  box-shadow: 0 8px 32px rgba(61,43,31,.12);
  transform: translateY(-4px);
}

/* ── Photo slot — fixed height so all cards align ── */
.specialty-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

/* Subtle zoom on the photo when the card is hovered */
.specialty-item:hover .specialty-img img {
  transform: scale(1.04);
}

.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .38s ease;
}

/* ── Text body ── */
.specialty-body {
  padding: 20px 22px 24px;
}

.specialty-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 10px;
  line-height: 1.25;
}

.specialty-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   TAB BAR
   ================================================================ */
.menu-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.tab-btn {
  padding: 10px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ================================================================
   MENU SECTIONS
   ================================================================ */
.menu-section {
  margin-top: 36px;
}

.menu-section-header {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.menu-section-note {
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
  line-height: 1.5;
}

/* ================================================================
   MENU TABLE
   Row layout matching the diner menu screenshot:
   item name (left) | price col(s) (right, fixed width)
   ================================================================ */
.menu-table {
  width: 100%;
}

/* ── Column header row ── */
.menu-table-head {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 0;
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.menu-table-head .col-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}

.menu-table-head .col-price {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: right;
}

/* ── Divider between sub-groups ── */
.menu-table-divider {
  border-top: 1px dashed var(--border);
  margin: 10px 0 4px;
}

/* ── Data rows ── */

/* Two-price row (e.g. Pancakes: Big / Short) */
.menu-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: baseline;
  gap: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(232,217,196,.5);
  transition: background .15s;
}

.menu-row:hover {
  background: rgba(200,131,42,.04);
}

/* Single-price row — item takes all remaining space, price at far right */
/* We achieve this by having .col-price-single span to the end of a
   two-column grid: item | price */
.menu-row:has(.col-price-single) {
  grid-template-columns: 1fr 90px;
}

/* Note rows (italic footnote spanning full width) */
.menu-row.menu-row-note {
  grid-template-columns: 1fr;
  padding: 6px 0 8px;
  border-bottom: none;
}

.menu-row.menu-row-note .col-item {
  font-size: 13px;
  font-style: italic;
  color: var(--gray);
}

/* ── Cell styles ── */
.col-item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 12px;
}

.col-full {
  /* Used in note rows where item spans all columns */
}

.col-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--amber-dark);
  text-align: right;
  white-space: nowrap;
}

.col-price-single {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--amber-dark);
  text-align: right;
  white-space: nowrap;
}

/* Ingredient/description sub-line under an item name */
.item-note {
  font-size: 12px;
  font-style: italic;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-body);
}

/* ─── GALLERY ────────────────────────────────────────── */
.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); height: 220px; }
.gallery-cell { position: relative; overflow: hidden; cursor: zoom-in; }
.gallery-cell:hover .gallery-overlay { opacity: 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(200,131,42,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; color: #fff; font-size: 28px; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--brown); padding: var(--section-pad) 0; }
.testimonials .section-label { color: var(--amber-light); }
.testimonials .section-title { color: #fff; }
.testimonials .divider { background: var(--amber-light); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 32px 28px; }
.stars { color: var(--amber-light); font-size: 16px; margin-bottom: 16px; }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 17px; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.65; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.author-info h5 { font-size: 14px; color: #fff; font-weight: 700; }
.author-info span { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner { background: var(--amber); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: #fff; line-height: 1.2; }
.cta-inner h2 em { font-style: italic; opacity: .85; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── CONTACT ────────────────────────────────────────── */
#contact { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.contact-map { border-radius: 4px; overflow: hidden; height: 400px; background: var(--border); position: relative; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #e8d9c0; color: var(--brown-mid); font-family: var(--font-body); font-size: 14px; text-align: center; }
.map-placeholder span { opacity: .55; font-style: italic; }
.info-block { margin-bottom: 30px; }
.info-block h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.info-block p, .info-block address { color: var(--gray); font-size: 15px; font-style: normal; line-height: 1.8; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.info-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--cream); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-top: 2px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 700; color: var(--brown); width: 50%; }
.hours-table tr:last-child td { border-bottom: none; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,.55); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 16px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.5); transition: all .2s; }
.social-link:hover { background: var(--amber); border-color: var(--amber); color: #fff; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }

/* ─── ANIMATION ──────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar .container { flex-direction: column; text-align: center; gap: 4px; }
  .topbar-left, .topbar-right { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-hours { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .specials-hero-content { padding: 36px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 180px; }
  .gallery-cell:nth-child(4), .gallery-cell:nth-child(5) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 160px; }
  .gallery-cell:nth-child(3), .gallery-cell:nth-child(4), .gallery-cell:nth-child(5) { display: none; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
  .specialty-img { height: 160px; }
}
