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

:root {
  --crimson: #8B1A3A;
  --crimson-dark: #6d1430;
  --crimson-light: #a82147;
  --gold: #C9A84C;
  --bg-cream: #f5f3ef;
  --bg-light: #faf9f7;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #888;
  --white: #ffffff;
  --nav-h: 70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 3px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}

.nav-brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.nav-brand-text span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--crimson);
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--crimson);
}

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

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}

.btn-call:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

.btn-call svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all .3s;
  transform-origin: center;
}

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

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

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

/* MOBILE MENU — use visibility+opacity instead of display:none so transition works */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  padding: 20px 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--crimson);
}

.mobile-call {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: var(--crimson) !important;
  color: white !important;
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-bottom: none !important;
}

/* HERO */
#home {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .5s forwards;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .7s forwards;
}

.btn-reserve {
  display: inline-block;
  background: var(--crimson);
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s, transform .2s, box-shadow .2s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .9s forwards;
}

.btn-reserve:hover {
  background: var(--crimson-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 26, 58, 0.4);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-hint .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-hint .wheel {
  width: 3px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(6px);
    opacity: .3
  }
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* SECTIONS */
section {
  padding: 90px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  text-align: center;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* ABOUT */
#about {
  background: var(--bg-cream);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--crimson);
  color: white;
  padding: 28px;
  border-radius: 4px;
  text-align: center;
  min-width: 130px;
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .85;
}

.about-text .tag {
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

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

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-item .lbl {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* MENU */
#menu {
  background: var(--bg-light);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.filter-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #eee;
  transition: box-shadow .2s, transform .2s;
}

.menu-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.menu-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.menu-card-body {
  flex: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 8px;
}

.menu-card-name {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.veg-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid green;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veg-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: green;
  border-radius: 50%;
}

.menu-price {
  color: var(--crimson);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.menu-item {
  display: flex;
}

.menu-item.hidden {
  display: none;
}

/* GALLERY */
#gallery {
  background: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background .3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.gallery-label {
  color: white;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* REVIEWS */
#reviews {
  background: var(--bg-light);
}

.rating-summary {
  text-align: center;
  margin-bottom: 40px;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.stars-row svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.rating-text {
  font-size: 14px;
  color: var(--text-light);
}

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

.review-card {
  background: var(--bg-cream);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--crimson);
}

.review-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e0ddd8;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
}

.reviewer-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* LOCATION */
#location {
  background: var(--bg-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.map-frame {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.info-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.info-detail {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.hours-highlight {
  color: var(--crimson);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
}

.location-note {
  background: white;
  border-left: 3px solid var(--crimson);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-top: 10px;
}

.location-note p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.location-note strong {
  color: var(--crimson);
}

/* RESERVE */
#reserve {
  background: var(--bg-light);
}

.reserve-form-wrap {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field label svg {
  width: 15px;
  height: 15px;
  stroke: var(--crimson);
  flex-shrink: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(139, 26, 58, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-confirm {
  width: 100%;
  padding: 16px;
  background: var(--crimson);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: background .2s, transform .2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-confirm:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
}

.btn-confirm svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
}

.form-note a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #1e1e1e;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .nav-brand-text h1 {
  color: white;
  font-size: 22px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  margin-bottom: 22px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.social-icons a:hover {
  border-color: var(--crimson);
  background: var(--crimson);
  color: white;
}

.social-icons svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover {
  color: white;
}

.footer-hours p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.footer-hours .happy {
  color: var(--gold);
  font-weight: 600;
  margin-top: 10px;
  display: block;
  font-size: 13px;
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--crimson);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: white;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.heart {
  color: var(--crimson);
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--crimson);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 26, 58, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--crimson-dark);
  transform: translateY(-3px) !important;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s, transform .7s;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s, transform .7s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1023px) {

  .nav-links,
  .btn-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    max-width: 500px;
  }

  .about-badge {
    bottom: 0;
    right: 0;
  }

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

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

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 220px;
  }

  .gallery-grid .gallery-item {
    height: 180px;
  }

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

  .reserve-form-wrap {
    padding: 30px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .mobile-menu {
    padding: 20px;
  }
}