/* =============================================================
   OFFBEAT BISTRO — style.css
   Palette: neon-red on near-black / Modern Retro Filipino Bistro
   Fonts: Secular One (display) + Arimo (body)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Secular+One&family=Arimo:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  --dark:      #0E0A0A;
  --bg-alt:    #1A0C0C;
  --accent:    #E82435;
  --accent-dim:rgba(232,36,53,.14);
  --highlight: #F5A020;
  --cream:     #F5F0EA;
  --muted:     rgba(245,240,234,.55);
  --border:    rgba(232,36,53,.22);
  --radius:    6px;
  --transition:0.3s ease;
  --max-w:     1200px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Secular One', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--muted); font-size: 1rem; }
.label {
  font-family: 'Arimo', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── 4. UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head p { max-width: 580px; margin: 0.8rem auto 0; }
.divider { width: 48px; height: 3px; background: var(--accent); margin: 1rem auto 0; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: 'Arimo', sans-serif; font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; transition: var(--transition);
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: #c91e2d; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--accent); color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid var(--border); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── 5. NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 24px;
  background: rgba(14,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(14,10,10,.98);
  border-bottom-color: var(--accent);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
}
.nav-logo-text {
  font-family: 'Secular One', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--muted); transition: color var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 1.5rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin: 16px 24px 0; }

/* ── 6. HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,10,10,.55) 0%,
    rgba(14,10,10,.42) 40%,
    rgba(14,10,10,.72) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
  padding: 0 24px; padding-top: 80px;
}
.hero-content .label { margin-bottom: 1.2rem; font-size: 0.8rem; }
.hero-title {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px; margin: 0 auto 2.4rem;
  color: rgba(245,240,234,.88);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .7; animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 7. FEATURES STRIP ── */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--accent-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.feature-text h4 { font-size: 0.92rem; margin-bottom: 2px; }
.feature-text p  { font-size: 0.8rem; color: var(--muted); }

/* ── 8. OFFERINGS / MENU GRID ── */
.offerings { padding: 5rem 0; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 2.4rem;
}
.menu-card {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  background: var(--bg-alt);
  cursor: pointer;
}
.menu-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(14,10,10,.92) 0%, transparent 100%);
  transform: translateY(8px); transition: transform var(--transition);
}
.menu-card:hover .menu-card-info { transform: translateY(0); }
.menu-card-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.menu-card-info p  { font-size: 0.8rem; color: var(--muted); }
.menu-cta { text-align: center; margin-top: 2.8rem; }

/* ── 9. BRAND TEASER / ABOUT STRIP ── */
.brand-teaser {
  padding: 5rem 0; background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.brand-teaser-img {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--accent); border-radius: var(--radius);
  transform: translate(10px, 10px);
  pointer-events: none;
}
.brand-teaser-text .label { margin-bottom: 1rem; }
.brand-teaser-text h2 { margin-bottom: 1.2rem; }
.brand-teaser-text p { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 0.8rem; }

/* ── 10. STATS BAR ── */
.stats-bar { padding: 4rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border);
}
.stat-item {
  background: var(--dark);
  text-align: center; padding: 2.5rem 1.5rem;
}
.stat-number {
  font-family: 'Secular One', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent); margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── 11. REVIEWS ── */
.reviews { padding: 5rem 0; background: var(--bg-alt); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.4rem;
}
.review-card {
  background: var(--dark); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--accent); }
.review-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text {
  font-style: italic; margin-bottom: 1.2rem;
  font-size: 0.95rem; color: rgba(245,240,234,.8);
  line-height: 1.6;
}
.review-author {
  display: flex; align-items: center; gap: 10px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Secular One', sans-serif; font-size: 0.9rem; color: var(--accent);
}
.review-name { font-size: 0.85rem; font-weight: 600; }
.review-source { font-size: 0.72rem; color: var(--muted); }

/* ── 12. SOCIAL CTA ── */
.social-cta {
  padding: 5rem 0; text-align: center;
  border-top: 1px solid var(--border);
}
.social-cta h2 { margin-bottom: 1rem; }
.social-cta p  { max-width: 480px; margin: 0 auto 2rem; }
.social-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.social-btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.social-btn-ig:hover { opacity: .88; transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; }

/* ── 13. INSTAGRAM FEED ── */
.insta-feed { padding: 5rem 0 4rem; background: var(--bg-alt); }
.feed-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px;
  margin-top: 2.4rem;
}
.feed-item {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: var(--dark);
}
.feed-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-item-overlay {
  position: absolute; inset: 0;
  background: rgba(232,36,53,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 32px; height: 32px; color: #fff; }

/* ── 14. PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex; align-items: flex-end;
  padding-top: 68px;
  background-image: var(--page-hero-bg);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,10,10,.5), rgba(14,10,10,.82));
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem 24px;
}
.page-hero-content .label { margin-bottom: 0.8rem; }
.page-hero-content h1 { margin-bottom: 0.6rem; }
.page-hero-content p { max-width: 560px; }

/* ── 15. ABOUT PAGE ── */
.about-intro { padding: 5rem 0; }
.about-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about-intro-text .label { margin-bottom: 1rem; }
.about-intro-text h2 { margin-bottom: 1.4rem; }
.about-intro-text p  { margin-bottom: 1rem; }
.about-intro-img { overflow: hidden; border-radius: var(--radius); }
.about-intro-img img { width: 100%; object-fit: cover; }

.about-values { padding: 5rem 0; background: var(--bg-alt); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2.4rem;
}
.value-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--accent); }
.value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { margin-bottom: 0.6rem; }

.about-team { padding: 5rem 0; }
.team-content { max-width: 700px; }
.team-content .label { margin-bottom: 1rem; }
.team-content h2 { margin-bottom: 1.4rem; }
.team-content p { margin-bottom: 1rem; }

.about-story { padding: 5rem 0; background: var(--bg-alt); }
.story-inner {
  display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: center;
}
.story-text .label { margin-bottom: 1rem; }
.story-text h2 { margin-bottom: 1.4rem; }
.story-text p  { margin-bottom: 1rem; }
.story-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.story-aside-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.story-aside-card .label { margin-bottom: 0.5rem; }
.story-aside-card p { font-size: 0.9rem; }

/* ── 16. MENU PAGE ── */
.menu-intro { padding: 4rem 0 2rem; }
.menu-intro p { max-width: 600px; }

.menu-section { padding: 3rem 0; }
.menu-section + .menu-section {
  border-top: 1px solid var(--border);
}
.menu-section-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.menu-section-header .label { margin-bottom: 0; }
.menu-section-header::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.menu-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-item {
  background: var(--bg-alt); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.menu-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.menu-item-img { aspect-ratio: 4/3; overflow: hidden; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-img-placeholder {
  width: 100%; height: 100%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.menu-item-img-placeholder svg { width: 40px; height: 40px; color: var(--border); }
.menu-item-body { padding: 1.2rem; }
.menu-item-body h4 { margin-bottom: 4px; }
.menu-item-body p  { font-size: 0.85rem; }

.menu-inquiry-strip {
  background: var(--accent); color: #fff;
  padding: 3rem; text-align: center;
  border-radius: var(--radius); margin: 3rem 0;
}
.menu-inquiry-strip h2 { color: #fff; margin-bottom: 0.6rem; }
.menu-inquiry-strip p  { color: rgba(255,255,255,.85); margin-bottom: 1.6rem; }
.menu-inquiry-strip .btn-ghost { border-color: #fff; color: #fff; }
.menu-inquiry-strip .btn-ghost:hover { background: #fff; color: var(--accent); }

/* ── 17. GALLERY PAGE ── */
.gallery-filter { padding: 3rem 0 1rem; }
.filter-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 24px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border); color: var(--muted);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-dim);
}
.gallery-grid {
  columns: 3; gap: 3px;
  padding: 1rem 0 4rem;
}
.gallery-grid img {
  width: 100%; margin-bottom: 3px;
  border-radius: 2px;
  transition: opacity var(--transition);
  cursor: pointer;
}
.gallery-grid img:hover { opacity: .85; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(14,10,10,.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; cursor: pointer;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── 18. CONTACT PAGE ── */
.contact-layout { padding: 5rem 0; }
.contact-inner {
  display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: start;
}
.contact-info .label { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--accent-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-detail-text h4 { margin-bottom: 2px; font-size: 0.9rem; }
.contact-detail-text p,
.contact-detail-text a { font-size: 0.88rem; color: var(--muted); }
.contact-detail-text a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.contact-form-card h3 { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--cream);
  font-family: 'Arimo', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
}
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--dark); }
.form-success {
  display: none; background: rgba(77,188,77,.12);
  border: 1px solid rgba(77,188,77,.4); border-radius: var(--radius);
  padding: 1rem 1.4rem; margin-top: 1rem;
  font-size: 0.9rem; color: #4DBC4D;
}

.faq-section { padding: 5rem 0; background: var(--bg-alt); }
.faq-list { max-width: 720px; margin: 2.4rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; text-align: left;
  font-family: 'Arimo', sans-serif; font-weight: 600;
  font-size: 0.95rem; color: var(--cream);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.2rem; }
.faq-answer p { font-size: 0.9rem; }

.map-section { padding: 5rem 0; }
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin-top: 2.4rem;
  height: 360px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder { text-align: center; }
.map-placeholder p { margin-top: 1rem; }
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); }

/* ── 19. FOOTER ── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent); margin-bottom: 1rem;
}
.footer-brand h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }
.footer-brand p  { font-size: 0.88rem; max-width: 260px; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--transition);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--accent); }
.footer-col li + li { margin-top: 0.7rem; }
.footer-col li a { font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.footer-col li a:hover { color: var(--cream); }
.footer-col address { font-style: normal; font-size: 0.88rem; color: var(--muted); }
.footer-col address p + p { margin-top: 0.5rem; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }

/* ── 20. SCROLL FADE-IN ── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── 21. SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .brand-teaser-inner { gap: 2.4rem; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .menu-grid  { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner  { grid-template-columns: 1fr; }
  .brand-teaser-img::after { display: none; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .feed-grid       { grid-template-columns: repeat(3, 1fr); }
  .contact-inner   { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .menu-items      { grid-template-columns: repeat(2, 1fr); }
  .about-intro-inner   { grid-template-columns: 1fr; }
  .story-inner     { grid-template-columns: 1fr; }
  .gallery-grid    { columns: 2; }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .features-grid   { grid-template-columns: 1fr; }
  .feature-item    { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .hero-actions    { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .menu-grid     { grid-template-columns: 1fr; }
  .feed-grid     { grid-template-columns: repeat(2, 1fr); }
  .menu-items    { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { columns: 1; }
}
