/* =============================================
   HAKKA DYNASTY — Unified Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --red:        #8C1C13;
  --red-dark:   #6A1209;
  --red-light:  #B52419;
  --cream:      #FBF6F0;
  --cream-2:    #F3EAE0;
  --white:      #FFFFFF;
  --text:       #1A1009;
  --text-mid:   #4A2C1A;
  --text-soft:  #7A5C44;
  --border:     #E0D0C4;
  --shadow-sm:  0 1px 6px rgba(26,16,9,0.07);
  --shadow:     0 4px 24px rgba(26,16,9,0.11);
  --shadow-lg:  0 8px 40px rgba(26,16,9,0.15);
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  color: var(--text);
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* Scroll-triggered fade up */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }

/* Slide from left */
.slide-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-left.visible { opacity: 1; transform: none; }

/* Slide from right */
.slide-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-right.visible { opacity: 1; transform: none; }

/* Page-load keyframes */
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: none; }
}
@keyframes headerIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideInMenu {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(251,246,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid);
  transition: color 0.22s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--red); }

/* Logo — Playfair text, crimson, blends naturally */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; font-weight: 800;
  color: var(--red);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: opacity 0.2s;
  line-height: 1;
}
.nav-logo:hover { opacity: 0.75; }

.hamburger { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: var(--cream);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2.5rem;
}
.mobile-menu.open {
  display: flex;
  animation: slideInMenu 0.32s cubic-bezier(0.4,0,0.2,1) both;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  transition: color 0.2s, padding-left 0.22s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 0.6rem; }
.mobile-close {
  position: absolute; top: 1.4rem; right: 2rem;
  background: none; border: none;
  font-size: 2rem; color: var(--text-soft);
  cursor: pointer; line-height: 1;
  transition: color 0.2s, transform 0.22s;
}
.mobile-close:hover { color: var(--red); transform: rotate(90deg); }

.page-body { padding-top: 68px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.72rem 1.8rem;
  font-size: 0.85rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.15s;
  border: none; text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 2px 8px rgba(140,28,19,0.22);
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 18px rgba(140,28,19,0.32);
}
.btn-outline {
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline:hover {
  background: var(--red); color: var(--white);
  box-shadow: 0 2px 8px rgba(140,28,19,0.2);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--red);
  padding: 4rem 2.5rem 3.5rem;
  overflow: hidden;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
  animation: headerIn 0.6s ease both;
}
.page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem; max-width: 480px;
  animation: headerIn 0.6s 0.12s ease both;
}

.section-label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 0.6rem; display: block;
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--cream);
  animation: heroSlideLeft 0.75s ease both;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  animation: heroSlideLeft 0.75s 0.08s ease both;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--red); display: inline-block; flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 800; line-height: 1.0;
  color: var(--text); margin-bottom: 1.5rem;
  animation: heroSlideLeft 0.75s 0.14s ease both;
}
.hero-title span { color: var(--red); }
.hero-sub {
  font-size: 1rem; color: var(--text-soft);
  max-width: 380px; margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: heroSlideLeft 0.75s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: heroSlideLeft 0.75s 0.28s ease both;
}
.hero-right {
  position: relative; overflow: hidden;
  animation: heroScaleIn 1s 0.1s ease both;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 9s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(251,246,240,0.12), transparent 40%),
              linear-gradient(to top, rgba(140,28,19,0.1), transparent 50%);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red);
  display: grid; grid-template-columns: repeat(3,1fr);
}
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--red-dark); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.74rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── FEATURED DISHES ── */
.featured-section {
  padding: 6rem 2.5rem;
  max-width: 1100px; margin: 0 auto;
}
.featured-section h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 0.5rem; }
.section-intro {
  color: var(--text-soft); font-size: 0.95rem;
  max-width: 440px; margin-bottom: 3rem; line-height: 1.75;
}
.dishes-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.dish-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.dish-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.dish-card-img-wrap { overflow: hidden; }
.dish-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card-img { transform: scale(1.06); }
.dish-card-body { padding: 1.1rem 1.3rem 1.4rem; }
.dish-tag {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); margin-bottom: 0.35rem;
}
.dish-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.dish-card-body p { font-size: 0.78rem; color: var(--text-soft); line-height: 1.5; margin-bottom: 0.7rem; }
.dish-price { font-size: 0.95rem; font-weight: 700; color: var(--red); }

/* Red "spotlight" dish card — no photo */
.dish-card-red {
  background: var(--red);
  display: flex;
}
.dish-card-red-body {
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; justify-content: center;
  flex: 1;
}
.dish-card-red h3 {
  font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 0.6rem;
}
.dish-card-red p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.dish-card-link {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  margin-top: auto;
}
.dish-card-link:hover { color: #fff; }

/* ── WHY US ── */
.why-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2.5rem;
}
.why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.why-img-wrap:hover img { box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--red); color: #fff;
  padding: 1rem 1.4rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600; line-height: 1.5;
  box-shadow: var(--shadow);
}
.why-badge strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.why-text h2 { font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 1rem; }
.why-text p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.8; }
.why-points { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.why-points li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.88rem; color: var(--text-mid); }
.why-points li::before {
  content: '✓'; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--red); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; margin-top: 2px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--text); color: #fff;
  padding: 4.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(140,28,19,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; font-size: clamp(1.6rem,3.5vw,2.6rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.58); position: relative; font-size: 0.95rem; margin-bottom: 2rem; }
.cta-band .btn-red { position: relative; padding: 0.9rem 2.6rem; font-size: 0.9rem; }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 3.5rem 2.5rem 5rem;
  display: grid; grid-template-columns: 210px 1fr;
  gap: 3rem; align-items: start;
}
.menu-sidebar { position: sticky; top: 88px; }
.menu-sidebar h3 {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-soft); margin-bottom: 0.75rem;
}
.menu-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.menu-nav a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.84rem; font-weight: 500; color: var(--text-mid);
  border-radius: 5px; border-left: 3px solid transparent;
  transition: all 0.2s;
}
.menu-nav a:hover, .menu-nav a.active {
  color: var(--red); background: rgba(140,28,19,0.06);
  border-left-color: var(--red);
}
.menu-content { min-width: 0; }
.menu-category { margin-bottom: 3.5rem; scroll-margin-top: 90px; }
.menu-category h2 {
  font-size: 1.45rem; font-weight: 700;
  padding-bottom: 0.7rem; margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--red); color: var(--text);
}
.menu-items-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.menu-entry {
  background: var(--white); padding: 1rem 1.2rem;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1rem;
  transition: background 0.18s;
}
.menu-entry:hover { background: #FDF5F3; }
.menu-entry-name { font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 0.12rem; }
.menu-entry-note { font-size: 0.73rem; color: var(--text-soft); }
.menu-entry-price { font-size: 0.88rem; font-weight: 700; color: var(--red); flex-shrink: 0; white-space: nowrap; }
.halal-notice {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(140,28,19,0.07); border: 1px solid rgba(140,28,19,0.18);
  color: var(--red); font-size: 0.78rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 20px; margin-bottom: 2.5rem;
}
.order-strip {
  background: var(--cream-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.8rem 2rem; margin-bottom: 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.order-strip p { font-size: 0.87rem; color: var(--text-mid); }
.order-strip strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: 0.2rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-info > p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 2.2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(140,28,19,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.contact-detail:hover .contact-icon { background: rgba(140,28,19,0.15); }
.contact-icon svg { width: 17px; height: 17px; fill: var(--red); }
.contact-detail-label {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-soft); margin-bottom: 0.22rem;
}
.contact-detail-val { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.contact-detail-val a { color: var(--red); }
.contact-detail-val a:hover { text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.45rem 0; font-size: 0.84rem; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { color: var(--text-mid); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--text-soft); }

/* Map right panel */
.contact-map-panel { position: sticky; top: 88px; }
.map-wrap {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.map-wrap:hover { box-shadow: var(--shadow-lg); }
.map-wrap iframe { display: block; width: 100%; height: 500px; border: none; }
.map-address-bar {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1rem 1.3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.map-address-bar span { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }
.map-address-bar a { font-size: 0.78rem; font-weight: 600; color: var(--red); transition: opacity 0.2s; }
.map-address-bar a:hover { opacity: 0.7; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800;
  color: rgba(255,255,255,0.82); margin-bottom: 1rem; display: block;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 0.82rem; line-height: 1.85; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.4rem;
}
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-credit { font-size: 0.73rem; color: rgba(255,255,255,0.3); }
.footer-halal { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.42); letter-spacing: 0.05em; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger {
    display: flex; flex-direction: column;
    gap: 5px; cursor: pointer; padding: 6px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--red); border-radius: 2px; transition: all 0.28s;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.8rem; }
  .hero-right { height: 320px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .menu-nav { flex-direction: row; flex-wrap: wrap; gap: 0.4rem; }
  .menu-nav a { border-left: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 0.4rem 0.65rem; }
  .menu-nav a:hover, .menu-nav a.active { border-bottom-color: var(--red); background: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map-panel { position: static; }
  footer .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.2rem; }
  .hero-left { padding: 2.5rem 1.2rem; }
  .hero-right { height: 240px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .featured-section { padding: 3.5rem 1.2rem; }
  .why-strip { padding: 3.5rem 1.2rem; }
  .cta-band { padding: 3rem 1.2rem; }
  .menu-layout { padding: 2rem 1.2rem 4rem; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .order-strip { flex-direction: column; }
  .contact-layout { padding: 2.5rem 1.2rem 4rem; }
  .map-wrap iframe { height: 340px; }
  .page-header { padding: 3rem 1.2rem 2.5rem; }
  .mobile-menu a { font-size: 1.6rem; }
  .footer-bottom { align-items: center; text-align: center; }
}

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.footer-social a:hover { background: #8C1C13; color: #fff; border-color: #8C1C13; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }