/* ============================================
   THE WOODSHED PUB & PERK — STYLESHEET
   Warm terracotta + sand palette
   ============================================ */

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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #FDF6EE;
  --sand-dark: #F5E6D3;
  --sand-mid: #EDE0D0;
  --brown-dark: #3D2B1F;
  --brown-mid: #5C4033;
  --brown-light: #8B6F5E;
  --cream: #FFFAF5;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 43, 31, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--brown-dark);
  background-color: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ---------- TYPOGRAPHY ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag-light {
  color: var(--terracotta-light);
  background: rgba(212, 132, 94, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--cream);
}

.text-accent {
  color: var(--terracotta);
}

.text-accent-light {
  color: var(--terracotta-light);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  font-weight: 400;
}

.nav-logo {
  color: var(--terracotta);
}

.nav-accent {
  color: var(--terracotta);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.08);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brown-dark);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 43, 31, 0.85) 0%, rgba(61, 43, 31, 0.5) 50%, rgba(192, 96, 58, 0.3) 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61, 43, 31, 0.3) 0%, transparent 40%, transparent 60%, rgba(61, 43, 31, 0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 60px 0 120px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta-light);
  background: rgba(192, 96, 58, 0.2);
  border: 1px solid rgba(192, 96, 58, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--terracotta-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(253, 246, 238, 0.8);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(253, 246, 238, 0.7);
}

.hero-detail svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
}

/* Hero Card */
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 500 / 620;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.9) 0%, rgba(61, 43, 31, 0.3) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.hero-card-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.7);
  font-weight: 600;
}

.hero-card-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  margin-top: 16px;
  line-height: 1.4;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--sand);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--sand);
}

.about-img-secondary img {
  width: 280px;
  height: 210px;
  object-fit: cover;
}

.about-accent-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: var(--radius-md);
  opacity: 0.15;
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ---------- MENU ---------- */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.menu-header .section-title {
  margin-bottom: 16px;
}

.menu-intro {
  font-size: 1.1rem;
  color: var(--brown-mid);
}

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

.menu-card {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(192, 96, 58, 0.08);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 96, 58, 0.2);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(192, 96, 58, 0.1);
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  background: var(--terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
}

.menu-card-subtitle {
  font-size: 0.85rem;
  color: var(--brown-light);
  font-weight: 600;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--brown-light);
  text-align: right;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-top: 40px;
  font-style: italic;
}

/* ---------- VIBES ---------- */
.vibes {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.vibes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vibes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vibes-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 43, 31, 0.88) 0%, rgba(92, 64, 51, 0.8) 100%);
}

.vibes-content {
  position: relative;
  z-index: 1;
}

.vibes-content .section-title {
  margin-bottom: 48px;
  max-width: 600px;
}

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

.vibe-card {
  background: rgba(253, 246, 238, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 246, 238, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
}

.vibe-card:hover {
  background: rgba(253, 246, 238, 0.16);
  transform: translateY(-4px);
}

.vibe-icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 96, 58, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vibe-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.vibe-card p {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.7);
  line-height: 1.7;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--sand);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large img {
  height: 100%;
  min-height: 400px;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--tall img {
  height: 100%;
  min-height: 400px;
}

/* ---------- VISIT ---------- */
.visit {
  padding: 100px 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.95rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

.visit-detail a {
  color: var(--brown-mid);
  transition: var(--transition);
}

.visit-detail a:hover {
  color: var(--terracotta);
}

.visit-map {
  margin-top: 8px;
}

.map-link {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
}

.map-link:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
}

/* Contact Form */
.visit-form-wrapper {
  position: relative;
}

.visit-form-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192, 96, 58, 0.1);
}

.visit-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.visit-form-card > p {
  font-size: 0.95rem;
  color: var(--brown-light);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--brown-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--brown-light);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown-dark);
  color: rgba(253, 246, 238, 0.7);
  padding: 72px 0 0;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--terracotta-light);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--terracotta-light);
  padding-left: 4px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--terracotta-light);
}

.footer-contact a {
  color: rgba(253, 246, 238, 0.6);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 238, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(253, 246, 238, 0.4);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }

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

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

  .menu-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    right: 20px;
    bottom: -30px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    padding: 12px 16px;
    width: 100%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 0 100px;
  }

  .hero-card {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

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

  .menu-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--large img,
  .gallery-item--tall img {
    min-height: 200px;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .about-img-secondary img {
    width: 200px;
    height: 150px;
  }

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

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

  .gallery-item--large {
    grid-column: span 1;
  }

  .visit-form-card {
    padding: 24px;
  }
}
