/* ============================================================
   ŞELALE KIR LOKANTASI – Premium CSS
   ============================================================ */

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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark:  #9e7c2a;
  --dark:       #0d0d0d;
  --dark-2:     #161616;
  --dark-3:     #1e1e1e;
  --dark-4:     #252525;
  --text:       #f0ece4;
  --text-muted: #a89e8c;
  --accent:     #8b2e1a;
  --white:      #ffffff;
  --radius:     1rem;
  --radius-lg:  1.5rem;
  --hero-h:     100vh;
  --nav-h:      72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.5));
  transition: transform var(--transition), filter var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.75));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0 auto;
}

.nav-link {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { left: 1.1rem; right: 1.1rem; }

.nav-cta {
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: var(--hero-h);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.55) 40%,
    rgba(13,13,13,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.title-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(232,201,106,0.4);
}

.title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(240,236,228,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Shared button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 3rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(240,236,228,0.3);
  border-radius: 3rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

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

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem 2rem;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.feature-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.feature-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.feature-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(201,168,76,0.2);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 2rem;
  background: var(--dark);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-title { margin-bottom: 1.5rem; }

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

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  color: var(--dark);
  z-index: 2;
}

.about-badge-float span { font-size: 2rem; display: block; margin-bottom: 0.3rem; }
.about-badge-float p { font-size: 0.8rem; font-weight: 700; line-height: 1.3; }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 7rem 2rem;
  background: var(--dark-2);
}

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

/* Category Filter */
.category-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cat-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(201,168,76,0.25);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

.cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

.cat-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

/* Menu Grid */
.menu-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* Menu Card */
.menu-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.25);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3; /* More natural photo ratio to show more content */
  overflow: hidden;
  background: var(--dark-4);
  margin: 0.6rem; /* Creates a framed 'zoom out' effect */
  border-radius: calc(var(--radius-lg) - 0.4rem);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-card:hover .card-img-wrap img { 
  transform: scale(1.08); 
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem; /* Moved to right for better balance */
  background: rgba(201, 168, 76, 0.95);
  backdrop-filter: blur(4px);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
}

.card-body {
  padding: 0.8rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  transition: transform var(--transition);
}

.menu-card:hover .card-price {
  transform: scale(1.05);
  color: var(--gold);
}

.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  font-weight: 600;
}

/* Hidden card for filter */
.menu-card.hidden {
  display: none;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  position: relative;
  background-image: url('images/hero_restaurant.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 2rem;
  text-align: center;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.82);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.quote-mark {
  color: var(--gold);
  opacity: 0.6;
  margin: 0 auto 1.5rem;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

cite {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 7rem 2rem;
  background: var(--dark);
}

.gallery-grid {
  max-width: 1300px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 7rem 2rem;
  background: var(--dark-2);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.4rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-item a:hover { color: var(--gold-light); }

.contact-cta { margin-top: 1rem; }

.contact-map { height: 400px; border-radius: var(--radius-lg); overflow: hidden; }

.map-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.map-frame iframe { 
  width: 100%; 
  height: 100%; 
  border: none;
  filter: invert(90%) hue-rotate(180deg); 
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.4));
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(168,158,140,0.5);
}

.footer-bottom a {
  color: var(--gold-dark);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

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

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

.hero-tagline.reveal,
.hero-title.reveal,
.hero-desc.reveal,
.hero-actions.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline.animate { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.hero-title.animate   { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s; }
.hero-desc.animate    { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s; }
.hero-actions.animate { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame img { height: 380px; }
  .about-badge-float { bottom: -16px; left: -12px; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(13,13,13,0.97); backdrop-filter: blur(20px); padding: 2rem; gap: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.8rem 1rem; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { gap: 0; }
  .title-script { font-size: clamp(3rem, 12vw, 5rem); }

  .features-container { gap: 1rem; }
  .feature-divider { display: none; }

  .about-stats { gap: 1.5rem; }

  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .card-img-wrap { height: 180px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }

  .quote-section { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
