/* ═══════════════════════════════════════
   CHE Edinburgh — style.css
   ═══════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #C8102E;
  --red-l:  #E8334A;
  --red-d:  #8B0C22;
  --green:  #009639;
  --grn-l:  #00C04B;
  --blk:    #0D0D0D;
  --blk2:   #141414;
  --blk3:   #1C1C1C;
  --blk4:   #242424;
  --wht:    #FAFAFA;
  --off:    #EDE8E0;
  --grey:   #777;
  --grey2:  #444;
  --ease:   cubic-bezier(.22, .68, 0, 1.15);
  --fd:     'Playfair Display', serif;
  --fb:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--blk);
  color: var(--wht);
  font-family: var(--fb);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--fb); }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal="up"]    { transform: translateY(30px); }
[data-reveal="left"]  { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ── Flag SVGs ── */
.flag-sm  { display: block; width: 28px; height: 19px; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.flag-md  { display: block; width: 36px; height: 24px; border-radius: 2px; overflow: hidden; }
.hero-flag { display: block; width: 50px; height: 33px; border-radius: 3px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 12px rgba(0,0,0,.7); }

/* ── Flag Divider ── */
.flag-divider { height: 3px; display: flex; }
.flag-divider div:nth-child(1) { flex: 1; background: #000; }
.flag-divider div:nth-child(2) { flex: 1; background: var(--off); opacity: .45; }
.flag-divider div:nth-child(3) { flex: 1; background: var(--green); }

/* ── Shared Section Pieces ── */
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-size: .63rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--grn-l);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.section-label::before { content: ''; display: block; width: 18px; height: 1px; background: var(--green); }

.section-title {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--wht);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--red-l); }

.sec-hd { text-align: center; margin-bottom: 3rem; }

.sec-eye {
  font-size: .63rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--grn-l);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .75rem;
}
.sec-eye::before,
.sec-eye::after { content: ''; display: block; width: 18px; height: 1px; background: var(--green); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--fd);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--wht);
  line-height: 1;
}
.logo-text b { color: var(--red-l); font-weight: 900; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--wht); }

.nav-actions { display: flex; gap: .6rem; }

.btn-order {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  background: var(--red);
  color: var(--wht);
  border: 1px solid var(--red);
  transition: background .2s;
  white-space: nowrap;
}
.btn-order:hover { background: var(--red-l); }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  margin-right: -.4rem;
}
.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wht);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.ham.open span:first-child  { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:last-child   { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(13,13,13,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.mob-menu.open { opacity: 1; visibility: visible; }

.mob-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--grey);
  font-size: 1.3rem;
  cursor: pointer;
  padding: .5rem;
}

.mob-nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mob-link {
  font-family: var(--fd);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--wht);
  text-decoration: none;
  transition: color .2s;
}
.mob-link:hover { color: var(--red-l); }

.mob-order {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
.mob-btn {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1.3rem;
  border-radius: 3px;
  text-decoration: none;
  color: var(--wht);
  font-family: var(--fb);
}
.mob-btn.ue { background: var(--red); }
.mob-btn.je,
.mob-btn.dr { border: 1px solid rgba(255,255,255,.22); }

.mob-flags { display: flex; gap: 10px; }

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

/* Full-bleed background image */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55);
  transition: transform 8s ease;
}
.hero-img img.loaded { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,13,13,.95) 0%, rgba(13,13,13,.4) 50%, rgba(13,13,13,.2) 100%),
    linear-gradient(135deg, rgba(139,12,34,.35) 0%, transparent 60%);
}

/* Content sits on top of the background */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 100px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(200,16,46,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 20%, rgba(0,150,57,.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-eye {
  font-size: .63rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--grn-l);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  position: relative;
  z-index: 1;
}
.eye-line { display: block; width: 18px; height: 1px; background: var(--green); }

.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: .7rem;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .9;
  color: var(--wht);
  margin: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--red-l);
  display: block;
  font-size: .38em;
  letter-spacing: .1em;
  margin-top: .25em;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.hero-btns {
  margin-top: 2rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--wht);
  border: 1px solid var(--red);
  padding: .82rem 1.8rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .18s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--fb);
}
.btn-primary:hover { background: var(--red-l); transform: translateY(-1px); }

.btn-ghost {
  color: var(--wht);
  border: 1px solid rgba(255,255,255,.2);
  padding: .82rem 1.8rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color .2s, transform .18s;
  font-family: var(--fb);
}
.btn-ghost:hover { border-color: var(--wht); transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.hero-scroll span { font-size: .59rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey2); }
.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

.flag-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  display: flex;
  grid-column: 1 / -1;
}
.fb-blk { flex: 1; background: #000; }
.fb-wht { flex: 1; background: var(--off); opacity: .6; }
.fb-grn { flex: 1; background: var(--green); }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about { padding: 6rem 0; }
.about-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--grey);
  line-height: 1.9;
  font-size: .9rem;
  margin-bottom: .85rem;
}
.badges { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1.4rem; }
.badge {
  font-size: .6rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 1px solid rgba(200,16,46,.35);
  color: var(--red-l);
  padding: .26rem .72rem;
  border-radius: 2px;
}
.badge.green { border-color: rgba(0,150,57,.4); color: var(--grn-l); }

.about-card {
  background: var(--blk2);
  border: 1px solid rgba(200,16,46,.12);
  border-radius: 3px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}
.card-flag-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #000 33%, var(--red) 33% 66%, var(--green) 66%);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 1.3rem;
}
.stat-num {
  font-family: var(--fd);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--wht);
  line-height: 1;
}
.stat-num sup { color: var(--red-l); font-size: 1.2rem; }
.stat-lbl { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-top: .25rem; }

/* ══════════════════════════════════
   FOOD SHOWCASE
══════════════════════════════════ */
.showcase-section { background: var(--blk2); padding: 3rem 0 5rem; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: .9rem;
  margin-top: 2.5rem;
}

.food-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: default;
}
.food-card.tall { grid-row: span 2; }
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transition: transform .55s ease, filter .55s ease;
}
.food-card:hover img { transform: scale(1.06); filter: brightness(.55); }
.food-card:hover .fc-info { background: linear-gradient(to top, rgba(0,0,0,.97), transparent); }

.fc-badge {
  position: absolute;
  top: .65rem;
  right: .65rem;
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 2px;
  font-family: var(--fb);
  font-weight: 500;
}
.fc-badge.halal { background: var(--green); color: #fff; }
.fc-badge.vegan { background: rgba(0,200,80,.85); color: #fff; }
.fc-badge.best  { background: var(--red); color: #fff; }

.fc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem .9rem .8rem;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent);
  transition: background .3s;
}
.fc-name { font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--wht); line-height: 1.2; margin-bottom: .18rem; }
.fc-price { font-size: .72rem; color: var(--red-l); letter-spacing: .04em; }

/* ══════════════════════════════════
   MENU
══════════════════════════════════ */
.menu-section { padding: 4.5rem 0 7rem; }

.tab-bar {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.5rem;
  -webkit-overflow-scrolling: touch;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--grey);
  padding: .6rem 1.2rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  font-family: var(--fb);
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn.active { color: var(--wht); border-bottom-color: var(--red); }
.tab-btn:hover  { color: var(--wht); }

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 4px;
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.15rem;
  background: var(--blk2);
  transition: background .25s;
  cursor: default;
}
.menu-item:hover { background: var(--blk3); }

.menu-item img {
  width: 68px;
  height: 68px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blk3);
}
.mi-body { flex: 1; min-width: 0; }
.mi-name { font-family: var(--fd); font-size: .92rem; font-weight: 700; color: var(--wht); margin-bottom: .2rem; line-height: 1.25; }
.mi-desc { font-size: .74rem; color: var(--grey); line-height: 1.55; }
.mi-badge { font-size: .6rem; color: var(--red-l); margin-top: .3rem; letter-spacing: .04em; }

.mi-tags { display: flex; gap: .28rem; margin-top: .42rem; flex-wrap: wrap; }
.tag {
  font-size: .53rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .14rem .38rem;
  border-radius: 2px;
}
.tag-halal { background: rgba(0,150,57,.12); color: #4de080; border: 1px solid rgba(0,150,57,.2); }
.tag-veg   { background: rgba(0,180,80,.08); color: #5de890; border: 1px solid rgba(0,180,80,.18); }
.tag-vegan { background: rgba(0,180,80,.08); color: #5de890; border: 1px solid rgba(0,180,80,.18); }
.tag-pop   { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-top   { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-best  { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-sig   { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-cult  { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-must  { background: rgba(200,16,46,.1); color: var(--red-l); border: 1px solid rgba(200,16,46,.18); }
.tag-hot   { background: rgba(255,100,0,.1); color: #ff9a5c; border: 1px solid rgba(255,100,0,.18); }

.mi-price {
  font-family: var(--fd);
  font-size: .95rem;
  font-weight: 700;
  color: var(--wht);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ══════════════════════════════════
   ORDER SECTION
══════════════════════════════════ */
.order-section {
  background: var(--blk3);
  padding: 4.5rem 0;
}
.order-inner { text-align: center; }
.order-sub {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 520px;
  margin: .65rem auto 2rem;
}
.app-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .2s;
  min-width: 150px;
}
.app-card:hover { border-color: var(--red); background: rgba(200,16,46,.06); transform: translateY(-3px); }
.app-icon { font-size: 1.8rem; line-height: 1; }
.app-name { font-size: .8rem; font-weight: 500; color: var(--wht); letter-spacing: .06em; text-transform: uppercase; }
.app-sub  { font-size: .68rem; color: var(--grey); }

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section {
  background: var(--blk2);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.big-quote {
  position: absolute;
  top: -4rem;
  left: .5rem;
  font-family: var(--fd);
  font-size: 15rem;
  color: rgba(200,16,46,.04);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--blk4);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 3px;
  padding: 1.6rem;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(200,16,46,.25); }
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  border-radius: 0 0 3px 3px;
}
.stars { color: #F5B800; font-size: .8rem; letter-spacing: 2px; margin-bottom: .85rem; }
.review-text { font-size: .82rem; line-height: 1.88; color: var(--grey); font-style: italic; margin-bottom: 1.1rem; }
.reviewer { display: flex; align-items: center; gap: .65rem; }
.r-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-d), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .66rem;
  font-weight: 500;
  color: var(--wht);
  flex-shrink: 0;
}
.r-name { font-size: .77rem; font-weight: 500; color: var(--wht); }
.r-src  { font-size: .65rem; color: var(--grey); }

/* ══════════════════════════════════
   VISIT / INFO
══════════════════════════════════ */
.visit-section { padding: 5.5rem 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.info-title { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--wht); margin-bottom: 1.4rem; }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .62rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .82rem;
}
.hours-list li.no-border { border: none; }
.day  { color: var(--grey); }
.time { color: var(--wht); }
.time.late { color: var(--grn-l); }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .82rem; }
.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(200,16,46,.09);
  border: 1px solid rgba(200,16,46,.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}
.contact-label { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grn-l); margin-bottom: .18rem; }
.contact-val { font-size: .83rem; color: var(--wht); line-height: 1.6; }
.contact-val a { color: var(--wht); text-decoration: none; }
.contact-val a:hover { color: var(--red-l); }

/* MAP */
.map-wrap { height: 280px; position: relative; overflow: hidden; }
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(88%) hue-rotate(180deg) brightness(.65) contrast(1.2);
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  background: var(--red);
  color: var(--wht);
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .48rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.6);
  font-family: var(--fb);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #080808;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200,16,46,.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: .6rem;
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--wht);
}
.footer-logo b { color: var(--red); }
.footer-tagline { font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; color: var(--grey2); }
.footer-flag {
  height: 3px;
  display: flex;
  max-width: 180px;
  margin: .85rem auto;
  border-radius: 2px;
  overflow: hidden;
}
.footer-flag div:nth-child(1) { flex: 1; background: #000; }
.footer-flag div:nth-child(2) { flex: 1; background: var(--off); }
.footer-flag div:nth-child(3) { flex: 1; background: var(--green); }
.footer-legal { font-size: .65rem; color: rgba(100,100,100,.45); margin-top: .4rem; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .food-card.tall { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links, .nav-actions { display: none; }
  .ham { display: flex; }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 1.4rem 80px; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { max-width: 100%; }
  .hero-flag { width: 38px; height: 25px; }
  .hero-scroll { display: none; }

  .about-wrap  { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.3rem; }
  #about       { padding: 4rem 0; }

  .showcase-section .section-inner { padding: 0 1.3rem; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: .75rem; }

  .menu-section { padding: 3.5rem 0 5rem; }
  .menu-section .section-inner { padding: 0 1.3rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item img { width: 60px; height: 60px; }

  .order-section { padding: 3.5rem 0; }
  .order-section .section-inner { padding: 0 1.3rem; }

  .reviews-section { padding: 4rem 0; }
  .reviews-section .section-inner { padding: 0 1.3rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  .visit-section { padding: 4rem 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.3rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 13vw, 4rem); }
  .showcase-grid { grid-template-columns: 1fr; }
  .app-grid { flex-direction: column; align-items: center; }
  .app-card { width: 100%; max-width: 300px; }
}
