/* =========================================
   MITTI & MIST — HOME.CSS
   Mood: Warm editorial, earthy luxury
   Palette: Cream, terracotta, deep espresso
   ========================================= */

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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE5D4;
  --terra: #C4622D;
  --terra-light: #E07A45;
  --espresso: #1A0F0A;
  --espresso-mid: #3D2314;
  --fog: #8B7D72;
  --white: #FDFAF5;
  --gold: #C9A84C;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--espresso); font-family: var(--font-body); overflow-x: hidden; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(26,15,10,0.08);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--espresso); }
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--espresso-mid); }
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--espresso); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A0F0A 0%, #3D2314 45%, #6B3A20 80%, #C4622D 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.3) 0%, transparent 70%);
}
.c1 { width: 700px; height: 700px; top: -200px; right: -200px; animation: pulse 8s ease-in-out infinite; }
.c2 { width: 500px; height: 500px; bottom: -150px; left: -100px; animation: pulse 10s ease-in-out infinite 2s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2; padding: 0 4rem;
  max-width: 800px; margin-top: 5rem;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--terra-light); }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--terra-light); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: var(--terra); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 2px; text-decoration: none;
  font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; transition: background 0.3s, transform 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--white); text-decoration: none; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex;
  align-items: center; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px; transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--terra-light); color: var(--terra-light); }
.hero-trust {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.hero-trust .fa-star { color: var(--gold); font-size: 0.7rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── MARQUEE ── */
.marquee-wrapper {
  background: var(--terra); overflow: hidden; padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); font-family: var(--font-body); font-weight: 400;
  width: max-content;
}
.marquee-track .dot { color: rgba(255,255,255,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SIGNATURE ── */
.signature { padding: 7rem 4rem; background: var(--white); }
.sig-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 3.5rem; display: flex; align-items: center; gap: 1rem;
}
.sig-label::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); max-width: 80px; }
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.sig-card {
  position: relative; padding: 2.5rem 2rem;
  border: 1px solid var(--cream-dark); border-radius: 2px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  opacity: 0; transform: translateY(30px);
  background: var(--white);
}
.sig-card.visible { animation: fadeUp 0.7s ease forwards; }
.sig-card:nth-child(1) { animation-delay: 0s; }
.sig-card:nth-child(2) { animation-delay: 0.15s; }
.sig-card:nth-child(3) { animation-delay: 0.3s; }
.sig-card:hover { border-color: var(--terra); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(196,98,45,0.1); }
.sig-card::before {
  content: attr(data-index); position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 3rem; color: var(--cream-dark);
  font-weight: 300; line-height: 1;
}
.sig-icon { font-size: 1.5rem; color: var(--terra); margin-bottom: 1.25rem; }
.sig-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 0.75rem; color: var(--espresso);
}
.sig-card p { font-size: 0.9rem; line-height: 1.75; color: var(--fog); }

/* ── FEATURED MENU ── */
.featured-menu { padding: 7rem 4rem; background: var(--cream); }
.fm-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem;
}
.fm-tag {
  display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.5rem;
}
.fm-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--espresso); line-height: 1.1;
}
.fm-viewall {
  color: var(--terra); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.4rem; text-transform: uppercase;
  border-bottom: 1px solid var(--terra); padding-bottom: 2px; white-space: nowrap;
  transition: gap 0.3s;
}
.fm-viewall:hover { gap: 0.75rem; }
.fm-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 1.5rem; }
.fm-item {
  background: var(--white); border-radius: 2px; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  opacity: 0; transform: translateY(30px); position: relative;
}
.fm-item.visible { animation: fadeUp 0.7s ease forwards; }
.fm-item:nth-child(1) { animation-delay: 0s; }
.fm-item:nth-child(2) { animation-delay: 0.15s; }
.fm-item:nth-child(3) { animation-delay: 0.3s; }
.fm-item:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,15,10,0.12); }
.fm-img { height: 240px; background-size: cover; background-position: center; transition: transform 0.6s; }
.fm-item:hover .fm-img { transform: scale(1.04); }
.fm-img-1 {
  background-color: #4A2810;
  background-image: radial-gradient(ellipse at 30% 40%, #7A4020 0%, #2A1208 100%);
}
.fm-img-2 {
  background-color: #C4622D;
  background-image: radial-gradient(ellipse at 60% 30%, #E08050 0%, #8B3A15 100%);
}
.fm-img-3 {
  background-color: #8B6F47;
  background-image: radial-gradient(ellipse at 40% 50%, #C4A070 0%, #4A3020 100%);
}
.fm-item-featured .fm-img { height: 300px; }
.fm-info { padding: 1.5rem; }
.fm-category {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; display: block; margin-bottom: 0.4rem;
}
.fm-info h4 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--espresso); margin-bottom: 0.4rem;
}
.fm-info p { font-size: 0.85rem; color: var(--fog); line-height: 1.55; margin-bottom: 0.75rem; }
.fm-price {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--terra); font-weight: 500;
}
.fm-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--espresso); color: var(--cream); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.75rem;
  border-radius: 1px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.about-strip-img {
  background: linear-gradient(135deg, #2A1208 0%, #6B3A20 50%, #C4622D 100%);
  position: relative; overflow: hidden;
}
.about-strip-img::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.about-strip-text {
  background: var(--espresso); color: var(--cream);
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.as-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.as-tag::before { content: ''; width: 24px; height: 1px; background: var(--terra-light); }
.about-strip-text h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem;
}
.about-strip-text p {
  font-size: 0.95rem; line-height: 1.8; color: rgba(245,240,232,0.65);
  margin-bottom: 1rem; max-width: 460px;
}
.btn-earth {
  display: inline-block; margin-top: 1rem;
  border: 1px solid var(--terra); color: var(--terra); padding: 0.85rem 2rem;
  text-decoration: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.3s, color 0.3s; width: fit-content;
}
.btn-earth:hover { background: var(--terra); color: var(--white); }

/* ── STATS ── */
.stats-section {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--terra);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.2); text-align: center;
  opacity: 0; transform: translateY(20px);
}
.stat-item.visible { animation: fadeUp 0.6s ease forwards; }
.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 0.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 4rem; background: var(--cream); text-align: center;
}
.t-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 0.75rem;
}
.testimonials h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--espresso); margin-bottom: 3.5rem;
}
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; }
.t-card {
  padding: 2.5rem; background: var(--white); border-radius: 2px;
  transition: transform 0.4s; opacity: 0; transform: translateY(30px);
}
.t-card.visible { animation: fadeUp 0.7s ease forwards; }
.t-card:nth-child(1) { animation-delay: 0s; }
.t-card:nth-child(2) { animation-delay: 0.15s; }
.t-card:nth-child(3) { animation-delay: 0.3s; }
.t-card:hover { transform: translateY(-6px); }
.t-card-accent { background: var(--espresso); }
.t-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; letter-spacing: 2px; }
.t-card p {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  line-height: 1.7; color: var(--espresso-mid); margin-bottom: 1.25rem;
}
.t-card-accent p { color: rgba(245,240,232,0.8); }
.t-author { font-size: 0.8rem; color: var(--fog); font-weight: 500; }
.t-card-accent .t-author { color: rgba(245,240,232,0.5); }

/* ── HOURS + CTA ── */
.hours-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--espresso-mid);
}
.hc-left, .hc-right {
  padding: 5rem 4rem;
}
.hc-left { border-right: 1px solid rgba(255,255,255,0.08); }
.hc-right { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.25rem; }
.hc-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 1rem; display: block;
}
.hc-left h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--white); margin-bottom: 2rem;
}
.hc-hours { margin-bottom: 1.75rem; }
.hc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem; color: rgba(245,240,232,0.75); gap: 2rem;
}
.hc-loc { font-size: 0.85rem; color: var(--fog); display: flex; align-items: center; gap: 0.5rem; }
.hc-loc .fa-location-dot { color: var(--terra); }
.hc-right p {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  font-style: italic; color: rgba(245,240,232,0.8); line-height: 1.3;
}
.btn-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(245,240,232,0.6); text-decoration: none; font-size: 0.85rem;
  letter-spacing: 0.06em; border-bottom: 1px solid rgba(245,240,232,0.2);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
}
.btn-call:hover { color: var(--terra-light); border-color: var(--terra-light); }

/* ── INSTAGRAM ── */
.insta-strip { padding: 4rem; background: var(--cream); }
.insta-tag {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: 1.5rem; display: block; text-align: center;
}
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.insta-tile {
  aspect-ratio: 1; border-radius: 2px; position: relative;
  overflow: hidden; cursor: pointer;
}
.it-1 { background: linear-gradient(135deg, #2A1208, #6B3A20); }
.it-2 { background: linear-gradient(135deg, #C4622D, #8B3A15); }
.it-3 { background: linear-gradient(135deg, #4A3020, #8B6F47); }
.it-4 { background: linear-gradient(135deg, #1A0F0A, #3D2314); }
.it-5 { background: linear-gradient(135deg, #6B3A20, #C4A070); }
.insta-overlay {
  position: absolute; inset: 0; background: rgba(26,15,10,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white); opacity: 0; transition: opacity 0.3s;
}
.insta-tile:hover .insta-overlay { opacity: 1; }

/* ── FOOTER ── */
.footer { background: var(--espresso); color: rgba(245,240,232,0.6); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding: 5rem 4rem 3rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem; letter-spacing: 0.02em;
}
.footer-logo span { color: var(--terra); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.5); text-decoration: none; transition: border-color 0.3s, color 0.3s;
  font-size: 0.875rem;
}
.footer-social a:hover { border-color: var(--terra); color: var(--terra); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem; font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--terra); }
.footer-contact p, .footer-contact a {
  font-size: 0.875rem; line-height: 1.7; color: rgba(245,240,232,0.5);
  text-decoration: none; display: block; margin-bottom: 0.25rem;
}
.footer-contact a:hover { color: var(--terra); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem; color: rgba(245,240,232,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.85rem 2rem; }
  .hero-content { padding: 0 2rem; }
  .signature, .featured-menu, .testimonials { padding: 5rem 2rem; }
  .sig-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fm-grid { grid-template-columns: 1fr; }
  .fm-item-featured .fm-img { height: 260px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 300px; }
  .about-strip-text { padding: 3.5rem 2rem; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .t-grid { grid-template-columns: 1fr; }
  .hours-cta { grid-template-columns: 1fr; }
  .hc-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 3rem 2rem; }
  .hc-right { padding: 3rem 2rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .it-4, .it-5 { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .footer-bottom { padding: 1.25rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: var(--espresso); flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; transform: translateX(100%); transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; color: var(--white) !important; }
  .hero-content { padding: 0 1.5rem; margin-top: 6rem; }
  .hero-scroll-hint { display: none; }
  .signature, .featured-menu, .testimonials { padding: 4rem 1.5rem; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .it-3, .it-4, .it-5 { display: none; }
  .marquee-wrapper { display: none; }
}
