/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f5f0e8;
  --warm-white: #fdfaf5;
  --charcoal: #1a1510;
  --dark-brown: #2d2118;
  --brown: #5c3d2e;
  --ember: #c24b1a;
  --ember-light: #e8631f;
  --gold: #c9a040;
  --text-muted: #8a7a6a;
  --border: rgba(92, 61, 46, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  font-size: 1.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-links a:hover {
  color: var(--ember);
}

.reserve-nav-btn {
  padding: 12px 24px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.reserve-nav-btn:hover {
  background: var(--ember-light);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background-image: url(images/home2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c24b1a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 8, 0, 0.5), rgba(13, 8, 0, 0.6), rgba(26, 13, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.hero-pre {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--ember);
  font-style: italic;
}

.hero-desc {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 40px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--ember-light);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 4px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  writing-mode: vertical-lr;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 48px;
  background: var(--warm-white);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #1a0a00, #2a1400);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img-1 {grid-row: 1/3;}
.about-img-2 {background: linear-gradient(135deg, #2a0a00, #3a1400);}
.about-img-3 {background: linear-gradient(135deg, #0a1a0a, #152a15);}

.about-img-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.about-img-1 {
  grid-row: span 2;
  height: 100%;
}

.about-img-2, .about-img-3 {
  height: 100%;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.about-stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--ember);
  font-weight: 600;
  line-height: 1;
}

.about-stat small {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ===== MENU ===== */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto 48px;
}

.menu-tab {
  flex: 1;
  padding: 14px 24px;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.menu-tab:last-child {
  border-right: none;
}

.menu-tab:hover {
  background: rgba(194, 75, 26, 0.06);
  color: var(--ember);
}

.menu-tab.active {
  background: var(--ember);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.menu-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item:hover {
  box-shadow: 0 8px 40px rgba(194, 75, 26, 0.08);
  border-color: rgba(194, 75, 26, 0.2);
  transform: translateY(-2px);
}

.menu-item-emoji {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.menu-item-info {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.8px;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ember);
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.menu-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-tag {
  padding: 4px 10px;
  background: rgba(194, 75, 26, 0.08);
  border: 1px solid rgba(194, 75, 26, 0.15);
  color: var(--ember);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Menu item with image */
.menu-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  animation: fadeUp 0.4s ease;
}

.menu-item-image {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.08);
}


/* ===== SPECIALS (cleaned & optimized) ===== */
.specials {
  padding: 60px 0;
  background: var(--cream);
}

.specials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.specials-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch;
}

/* Left column – main dish image */
.specials-main-image {
  flex: 1.4;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specials-food-img {
  width: 80%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Right column – wine image + card */
.specials-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.specials-small-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.specials-small-img img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.specials-small-img img:hover {
  transform: scale(1.02);
}

/* Image placeholders (when image missing) */
.img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: inherit;
  width: 100%;
  height: 100%;
  min-height: 200px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  gap: 8px;
}

.img-placeholder i {
  font-size: 2rem;
  color: var(--ember);
}

.img-placeholder small {
  font-size: 0.7rem;
}

/* Description card */
.section-corner-card {
  background: rgba(26, 21, 16, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(194, 75, 26, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.section-corner-card:hover {
  transform: translateY(-5px);
}

.section-corner-card .section-label {
  color: var(--ember);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}

.section-corner-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 16px 0;
}

.specials-dish {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.dish-emoji {
  font-size: 2.5rem;
}

.dish-details {
  flex: 1;
}

.dish-desc {
  color: rgba(245, 240, 232, 0.9);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ember);
}

.dish-price span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Josefin Sans', sans-serif;
}

.section-corner-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
}

/* ===== GALLERY (full support for images/videos + hover) ===== */
.gallery {
  padding: 100px 0;
  background: var(--warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #2a1a10;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.gallery-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-media {
  transform: scale(1.05);
}

.gallery-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a1a10, #1a0a00);
  color: var(--text-muted);
  gap: 8px;
  z-index: 1;
}

.gallery-placeholder i {
  font-size: 2.5rem;
  color: var(--ember);
  opacity: 0.6;
}

.gallery-placeholder p {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gallery-placeholder small {
  font-size: 0.7rem;
  opacity: 0.7;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 16px 12px;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

.gallery-label i {
  margin-right: 6px;
  font-size: 0.8rem;
}

.gallery-item.g-large {
  grid-column: span 2;
}

/* Video specific */
.gallery-video {
  object-fit: cover;
}

/* ===== RESERVATION ===== */
.reservation {
  padding: 100px 0;
  background: var(--cream);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.reservation-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.1;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: rgba(194, 75, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item strong {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.info-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reservation-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.reservation-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--charcoal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--warm-white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ember);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--ember-light);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--ember);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ember);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about {
    padding: 80px 32px;
  }
  .reservation-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.g-large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    color: var(--charcoal) !important;
  }
  .reserve-nav-btn {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero-content {
    padding: 0 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-grid {
    height: 300px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .gallery-item.g-large {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .reservation-form {
    padding: 28px 24px;
  }
  .about {
    padding: 60px 24px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .specials-layout {
    flex-direction: column;
  }
  .specials-sidebar {
    width: 100%;
  }
  .specials-small-img img {
    max-height: 200px;
  }
  .specials-food-img {
    width: 100%;
  }
}