/* ===== Tamara Resto-Bar — styles ===== */

:root {
  --maroon: #aa0c41;
  --maroon-dark: #7c0930;
  --olive: #58631e;
  --tan: #ac774e;
  --black: #000000;
  --cream: #fbf6ee;
  --off-white: #fffaf3;
  --text: #241109;

  /* Premium Curvy Serif for Headlines */
  --font-serif: 'Playfair Display', serif; /* Or 'Italiana', serif */
  --font-head: 'Nunito Sans', sans-serif;

  /* Avenir Equivalent for Body Text */
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--black);
  margin-bottom: 14px;
}

.section-head p {
  color: #5a4a3f;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--maroon);
  color: #fff;
}

.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(170, 12, 65, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover {
  background: #fff;
  color: var(--maroon);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: max-content;
  max-width: 94%;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(20, 9, 8, 0.4);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, top 0.35s ease;
}

.site-header.scrolled {
  top: 12px;
  background: rgba(15, 7, 6, 0.62);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
  aspect-ratio: 574 / 456;
  transition: height 0.35s ease;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.site-header.scrolled .brand img {
  height: 36px;
}

.nav-group-wrap {
  display: contents;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fdf6ee;
}

.nav-group a {
  position: relative;
  padding-bottom: 4px;
}

.nav-group a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--tan);
  transition: width 0.25s ease;
}

.nav-group a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.72rem !important;
  border-radius: 999px;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 899px) {
  .site-header {
    top: 16px;
    left: 24px;
    right: 24px;
    transform: none;
    width: auto;
    max-width: none;
    padding: 10px 18px;
    border-radius: 999px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 9, 8, 0.85);
  }

  .site-header.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.scrolled {
    top: 12px;
  }

  .nav-group-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(18, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
    visibility: hidden;
  }

  .site-header.nav-open .nav-group-wrap {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-group {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (min-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 10px 30px;
  }

  .nav-left { grid-column: 1; grid-row: 1; align-self: center; margin-right: 30px; }
  .brand { grid-column: 2; grid-row: 1; justify-self: center; align-self: center; }
  .nav-right { grid-column: 3; grid-row: 1; align-self: center; margin-left: 30px; }
  .nav-toggle { grid-column: 4; grid-row: 1; display: none; }
}

/* ===== Hero ===== */
/* .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.75) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 780px;
  padding: 0 24px;
  margin-left: 0;
}

@media (max-width: 640px) {
  .hero-content {
    margin-left: 0;
  }
}

.hero-content .eyebrow {
  color: var(--tan);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 560px;
  margin: 0 auto 36px;
  color: #f4ece1;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4ece1;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(#f4ece1, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
} */



/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  padding: 80px 20px;

  /* Animated background image setup */
  background-size: cover;
  background-position: center;
  animation: heroBgSlider 15s infinite ease-in-out;
}

/* 3-Image Carousel Animation (5 seconds per image) */
@keyframes heroBgSlider {
  0%, 28% {
    background-image: url('/assets/herot.webp');
  }
  33%, 61% {
    background-image: url('https://images.unsplash.com/photo-1724426057815-a12b34f027c1?q=80&w=1116&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Add path to Image 2 */
  }
  66%, 95% {
    background-image: url('https://images.unsplash.com/photo-1651978595428-b79169f223a5?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Add path to Image 3 */
  }
  100% {
    background-image: url('https://images.unsplash.com/photo-1692197275441-40c874f40385?q=80&w=1473&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  }
}

/* Darker Vignette & Tint Overlay for Maximum Text Contrast */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.25) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating Pill Eyebrow */
.hero-content .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #e2ba8a;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(226, 186, 138, 0.35);
  margin-bottom: 20px;
  font-weight: 500;
}

/* Crisp Text with Extra Pop */
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.95);
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #f4ece1;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Luxury Glass CTA Button */
.hero-content .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: rgba(226, 186, 138, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f4ece1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e2ba8a;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.hero-content .btn-primary:hover {
  background: #e2ba8a;
  color: #0d0a07;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 186, 138, 0.4);
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e2ba8a;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, #e2ba8a, transparent);
  animation: scrollPulse 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== About ===== */
.about {
  padding: 110px 0;
  background: var(--off-white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
  /* box-shadow: var(--shadow); */
}

.about-image::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  width: 130px;
  height: 130px;
  border: 3px solid var(--tan);
  border-radius: 6px;
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 22px;
  color: var(--black);
}

.about-text p {
  color: #5a4a3f;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 34px;
}

.about-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--maroon);
}

.about-stats div span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #7a6a5d;
  text-transform: uppercase;
}

/* ===== Menu ===== */
.menu {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.menu-tab {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--tan);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all 0.25s ease;
}

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

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

.menu-item {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.5s ease forwards;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.menu-item-img {
  flex: 0 0 130px;
}

.menu-item-img img {
  width: 130px;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.menu-item-body {
  padding: 18px 18px 18px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.menu-item-top h4 {
  font-size: 1.08rem;
  color: var(--black);
}

.menu-item-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
}

.menu-item-body p {
  font-size: 0.88rem;
  color: #7a6a5d;
  margin-top: 8px;
}

.menu-item-cat {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

.menu-hidden {
  display: none;
}

.menu-more-wrap {
  text-align: center;
  margin-top: 48px;
}

#menuToggleBtn {
  font-family: var(--font-head);
}

/* ===== Services ===== */
.services {
  padding: 110px 0;
  background: var(--black);
  color: #fff;
}

.services .section-head h2 {
  color: #fff;
}

.services .section-head p {
  color: #cabfb2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 42px 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  border-color: var(--maroon);
  transform: translateY(-6px);
  background: rgba(170,12,65,0.08);
}

.service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--tan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #b9ac9e;
}

/* ===== Gallery ===== */
.gallery {
  padding: 110px 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-grid figure:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-grid figure:nth-child(4) { grid-column: span 1; grid-row: span 2; }
.gallery-grid figure:nth-child(5) { grid-column: span 1; grid-row: span 1; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream), #f3e8d8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-stars {
  color: var(--tan);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  font-size: 0.94rem;
  color: #4a3a30;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tan);
}

.testimonial-person strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}

.testimonial-person span {
  font-size: 0.78rem;
  color: #8a7a6d;
}

/* ===== Reservation CTA ===== */
.reserve-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
}

.reserve-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.reserve-cta p {
  max-width: 520px;
  margin: 0 auto 34px;
  color: #f0e6d8;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: #cabfb2;
  padding: 80px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: #a99b8d;
  max-width: 260px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 11px;
  font-size: 0.9rem;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-row a:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-3px);
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 26px;
  font-size: 0.8rem;
  color: #8a7d70;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-image img {
    height: 380px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid figure:nth-child(4) { grid-row: span 1; }
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .menu-item {
    flex-direction: column;
  }
  .menu-item-img {
    flex: none;
    width: 100%;
  }
  .menu-item-img img {
    width: 100%;
    height: 170px;
  }
  .menu-item-body {
    padding: 16px;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    gap: 30px;
  }
  .reserve-cta {
    background-attachment: scroll;
  }
}