/* ═══════════════════════════════════════════════════════════════
   SAYTAD BAKLAVA — Main Stylesheet
   Version: 2.0 | saytad.com
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold: #b8862e;
  --gold-light: #d4a84b;
  --gold-pale: #f5e9c8;
  --dark: #0f0c07;
  --dark-2: #1c1509;
  --dark-3: #2a1f0d;
  --cream: #faf6ee;
  --cream-2: #f2ead8;
  --text: #2a1f0d;
  --text-mid: #5c4320;
  --text-light: #9a7540;
  --white: #fff;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── BASE BODY ─── */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── ANNOUNCEMENT BAR ─── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(200,150,62,0.2);
}
.topbar span { color: var(--gold-light); }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(15,12,7,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,130,50,0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
  height: 72px;
}

.nav-left { display: flex; gap: 2.2rem; align-items: center; }
.nav-left a, .nav-right a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-left a:hover, .nav-right a:hover { color: var(--gold-light); }
.nav-left a.active { color: var(--gold-light); }

.nav-logo {
  text-align: center;
  text-decoration: none;
}
.nav-logo-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.nav-logo-sub {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-top: 2px;
}

.nav-right { display: flex; gap: 2.2rem; align-items: center; justify-content: flex-end; }

/* ─── LANGUAGE SWITCH ─── */
.lang-switch {
  display: flex; gap: 0.3rem; align-items: center;
  margin-left: 1.4rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 1.4rem;
}
.lang-btn {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 0.25rem 0.55rem;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--gold-light); border-color: rgba(180,130,50,0.3); }
.lang-btn.active { color: var(--gold-light); border-color: rgba(180,130,50,0.45); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../../images/Fistikli-ozel-sobiyet-baklava.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,3,0.78) 0%,
    rgba(15,12,7,0.5) 45%,
    rgba(10,8,3,0.82) 100%
  );
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.6rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-desc {
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 500px;
  margin: 1.8rem auto 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s ease forwards;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.hero-scroll span {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(200,150,62,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 2.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

/* ─── SECTION COMMONS ─── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--gold-light); }

/* ─── CATEGORIES GRID ─── */
.categories { padding: 6rem 3rem; background: var(--cream); }
.categories-header { text-align: center; margin-bottom: 4rem; }
.categories-header .section-label { justify-content: center; }
.categories-header .section-label::after { display: none; }

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

.cat-card {
  position: relative; overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.cat-card--tall { grid-row: span 2; }

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 260px;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.78);
}
.cat-card--tall img { min-height: 530px; }
.cat-card:hover img { transform: scale(1.07); filter: brightness(0.55); }

.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,8,3,0.95) 0%, transparent 100%);
}
.cat-label-tag {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.3rem;
}
.cat-label-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: #fff; line-height: 1.1;
}
.cat-card--tall .cat-label-name { font-size: 2.2rem; }
.cat-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--dark);
  border-top: 1px solid rgba(180,130,50,0.2);
  border-bottom: 1px solid rgba(180,130,50,0.2);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
  padding: 0 1.5rem;
}
.marquee-track span.dot { color: var(--gold); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FEATURED ROW ─── */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.featured-img { overflow: hidden; position: relative; }
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.88) saturate(1.1);
}
.featured-img:hover img { transform: scale(1.04); }

.featured-content {
  background: var(--dark-3);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5rem;
}
.featured-content .section-label { color: var(--gold); }

.featured-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem; line-height: 1.9;
  margin: 1.5rem 0 2.5rem;
  max-width: 420px;
}

/* ─── ABOUT ─── */
.about { padding: 0; background: var(--dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-photo { position: relative; overflow: hidden; }
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) sepia(0.15);
  transition: transform 0.8s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(10,8,3,0.7);
  border: 1px solid rgba(200,150,62,0.3);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-photo-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.about-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem;
  background: var(--dark);
}

.about-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.93rem; line-height: 1.95;
  margin: 1.6rem 0 2.8rem;
  max-width: 440px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(180,130,50,0.2);
  margin-bottom: 2.8rem;
}
.stat {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid rgba(180,130,50,0.2);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.3rem;
}

/* ─── MENU SECTION ─── */
.menu-section { padding: 6rem 2rem; background: var(--cream-2); }
.menu-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.menu-header .section-label { justify-content: center; }
.menu-header .section-label::after { display: none; }

.menu-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(180,130,50,0.25);
  flex-wrap: wrap;
}
.tab-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 0.75rem 1.8rem; margin-bottom: -1px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); cursor: pointer;
  transition: all 0.25s;
}
.tab-btn.active { border-bottom-color: var(--gold); color: var(--gold); }
.tab-btn:hover:not(.active) { color: var(--text-mid); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1440px; margin: 0 auto;
}

.menu-item {
  position: relative; overflow: hidden;
  background: var(--cream-2);
  background-size: cover; background-position: center;
  aspect-ratio: 4 / 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.32);
}

/* dark overlay for items with a background image */
.menu-item[style]::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 6, 2, 0.05);
  transition: background 0.3s;
  z-index: 0;
}
.menu-item[style]:hover::before { background: rgba(8, 6, 2, 0.0); }
.menu-item[style] > * { position: relative; z-index: 1; }
.menu-item[style]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.0) 100%);
  z-index: 0;
  pointer-events: none;
}
/* plain items keep original hover */
.menu-item:not([style]):hover { background: var(--gold-pale); }

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.4rem;
  line-height: 1.15;
}
.menu-item[style] .menu-item-name { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.95), 0 3px 20px rgba(0,0,0,0.8); }
.menu-item-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.menu-item[style] .menu-item-desc { color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.95), 0 2px 14px rgba(0,0,0,0.85); }
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; color: var(--gold);
  white-space: nowrap; flex-shrink: 0; font-weight: 600;
  align-self: flex-end;
}
.menu-item[style] .menu-item-price { color: var(--gold-light); text-shadow: 0 1px 8px rgba(0,0,0,0.95), 0 2px 16px rgba(0,0,0,0.8); }

/* ─── GIFT BANNER ─── */
.gift-banner {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.gift-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(0.8);
}
.gift-banner-content {
  position: relative; z-index: 2;
  text-align: center; padding: 3rem 2rem;
  max-width: 600px;
}
.gift-banner-content .section-label { justify-content: center; color: var(--gold-light); }
.gift-banner-content .section-label::after { display: none; }
.gift-banner-content .section-title--light { font-size: clamp(2rem, 4vw, 3.2rem); }
.gift-banner-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem; line-height: 1.8;
  margin: 1.2rem auto 2rem; max-width: 440px;
}

/* ─── CONTACT ─── */
.contact { padding: 6rem 3rem; background: var(--dark-2); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; max-width: 1100px; margin: 0 auto;
  align-items: start;
}

.contact-info .section-label { color: var(--gold); }

.contact-details { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.cdet {
  display: flex; gap: 1rem; align-items: flex-start;
  color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6;
}
.cdet-icon { width: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(180,130,50,0.25);
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  outline: none; width: 100%;
  transition: border-color 0.25s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--dark-2); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(180,130,50,0.12);
  padding: 3rem 3rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.footer-brand-tag {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.35);
  font-size: 0.83rem; line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.3);
  text-decoration: none; font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(180,130,50,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a {
  color: rgba(255,255,255,0.3);
  text-decoration: none; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NEWSLETTER BAND ─── */
.newsletter-band {
  background: var(--dark-2);
  border-top: 1px solid rgba(180,130,50,0.12);
  border-bottom: 1px solid rgba(180,130,50,0.12);
  padding: 4rem 3rem;
  text-align: center;
}
.nl-label {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--white); margin-bottom: 0.5rem; line-height: 1.1;
}
.nl-title em { font-style: italic; color: var(--gold-light); }
.nl-sub { color: rgba(255,255,255,0.38); font-size: 0.88rem; margin-bottom: 2rem; }
.nl-form {
  display: flex; justify-content: center; gap: 0;
  max-width: 460px; margin: 0 auto;
}
.nl-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(180,130,50,0.25); border-right: none;
  color: var(--white); padding: 0.85rem 1.2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.82rem; outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.28); }
.nl-btn {
  background: var(--gold); color: var(--dark); border: none;
  padding: 0.85rem 1.8rem; font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s;
}
.nl-btn:hover { background: var(--gold-light); }

/* ─── MOBILE / RESPONSIVE ─── */
@media (max-width: 960px) {
  nav {
    grid-template-columns: 1fr;
    justify-items: center;
    height: auto;
    padding: 1rem;
  }
  .nav-left, .nav-right { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card--tall { grid-row: span 1; }
  .cat-card--tall img { min-height: 260px; }
  .featured { grid-template-columns: 1fr; }
  .featured-content { padding: 3rem 2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-content { padding: 3rem 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  section, .categories, .menu-section, .contact { padding: 4rem 1.5rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 580px) {
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }
  .menu-item { aspect-ratio: 3 / 2; }
  .form-row2 { grid-template-columns: 1fr; }
}
