/* ============================================
   Lucano's Pasta Italian Restaurant
   Clean Minimalist · Deep Navy + Warm Gold
   ============================================ */

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

:root {
  --navy-800: #1a2744;
  --navy-900: #0f1a2e;
  --gold-400: #d4a853;
  --gold-500: #c9952e;
  --gold-600: #b8860b;
  --cream: #faf8f4;
  --cream-dark: #f3efe8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999999;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-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-sans);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  box-shadow: 0 1px 20px rgba(26, 39, 68, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  color: var(--gold-400);
}

.nav-logo-text {
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--navy-800);
}

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

.nav-cta {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--gold-500) !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  border: 1px solid var(--gold-400);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-400);
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-800);
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-900);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline span {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
}

.btn-primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

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

/* Floating Stat Cards */
.hero-cards {
  position: relative;
  height: 520px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

.float-card-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.float-card-number span {
  font-size: 1.2rem;
  font-family: var(--font-sans);
}

.float-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.float-card--1 {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.float-card--2 {
  top: 140px;
  right: 180px;
  animation-delay: -1.5s;
}

.float-card--3 {
  bottom: 140px;
  right: 40px;
  animation-delay: -3s;
}

.float-card--4 {
  bottom: 0;
  right: 200px;
  animation-delay: -4.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 620px;
}

.hero-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-img--1 {
  width: 300px;
  height: 400px;
  top: 60px;
  left: 0;
  z-index: 2;
}

.hero-img--2 {
  width: 260px;
  height: 340px;
  bottom: 40px;
  right: 0;
  z-index: 1;
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 26, 46, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 168, 83, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-800);
  opacity: 0.3;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 8rem 2rem;
  background: var(--cream);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 3rem;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-400);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy-800);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-800);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  padding: 8rem 2rem;
  background: var(--white);
}

.menu-container {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.menu-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Menu Categories */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-cat-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(26, 39, 68, 0.08);
  border-color: rgba(212, 168, 83, 0.2);
}

.menu-item-image {
  height: 140px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.08);
}

.menu-item-body {
  padding: 1.2rem 1.2rem 1.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

.menu-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  justify-content: center;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: 8rem 2rem;
  background: var(--cream);
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item--1 {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.gallery-item--2 {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
}

.gallery-item--3 {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.gallery-item--4 {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
}

.gallery-item--5 {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit {
  padding: 8rem 2rem;
  background: var(--white);
}

.visit-container {
  max-width: 1280px;
  margin: 0 auto;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.visit-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.visit-details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.visit-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.visit-detail-value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy-800);
  font-weight: 400;
}

.visit-phone {
  color: var(--gold-500);
  font-weight: 500;
  transition: var(--transition);
}

.visit-phone:hover {
  color: var(--gold-600);
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
  border: 1px solid rgba(26, 39, 68, 0.06);
}

.map-placeholder iframe {
  border-radius: 20px;
}

/* Contact Form */
.contact-form-wrapper {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 39, 68, 0.08);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy-800);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: 10px;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem;
  text-align: center;
  color: var(--navy-800);
}

.form-success svg {
  color: var(--gold-500);
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  padding: 5rem 2rem 2rem;
  color: var(--white);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-top: 0.3rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
  transition: var(--transition);
  font-weight: 300;
}

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

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-cards {
    display: none;
  }

  .hero-images {
    display: none;
  }

  .hero {
    text-align: center;
    padding-top: 8rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .gallery-item--1 {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 300px;
  }

  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-map {
    height: 350px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .about,
  .menu,
  .gallery,
  .visit {
    padding: 5rem 1.5rem;
  }

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

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

  .menu-item {
    grid-template-columns: 100px 1fr;
    gap: 0.8rem;
  }

  .menu-item-image {
    height: 100px;
  }

  .footer-links {
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

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

  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 {
    grid-column: 1;
    min-height: 180px;
  }
}
