/* =================================================================
   DAWAT RESTAURANT & PLATTER HOUSE — Stylesheet
   Brand colors: Dark Green #0F3B2E  |  Gold #D4AF37
   Mobile-first, premium Pakistani restaurant aesthetic
   ================================================================= */

:root {
  --green: #0F3B2E;
  --green-deep: #0A2A20;
  --green-soft: #1A5240;
  --gold: #D4AF37;
  --gold-light: #E8C766;
  --gold-deep: #B8932B;
  --cream: #FBF8F1;
  --ink: #1B1B1B;
  --muted: #6b6b6b;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(15, 59, 46, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 59, 46, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 59, 46, 0.20);

  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

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

/* -------------------- FLAT ICONS -------------------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
/* Inline icon: sizes to surrounding text, inherits text color */
.ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; vertical-align: -0.18em; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }

/* -------------------- BUTTONS -------------------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--green-deep); box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(212, 175, 55, 0.5); }

.btn-green { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--green-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--green); transform: translateY(-3px); }

.contact-actions .btn-outline { color: var(--green); border-color: var(--green); }
.contact-actions .btn-outline:hover { background: var(--green); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }

.wa-icon { width: 20px; height: 20px; fill: currentColor; }

/* -------------------- NAVBAR -------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled { background: var(--green); padding: 10px 0; box-shadow: var(--shadow-md); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 56px; width: auto; display: block; transition: height 0.35s ease, filter 0.3s ease; }
.navbar.scrolled .brand-logo { height: 46px; }
.brand-logo-footer { height: 84px; }
.brand-mark {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--green-deep); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--white); }
.brand-sub { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 500; position: relative; transition: color 0.2s; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover { color: var(--gold-light); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------------------- HERO -------------------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white); overflow: hidden;
}
/* DEVELOPER NOTE: Replace the hero background image URL below with the real hero photo */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,0.18), transparent 45%),
    linear-gradient(135deg, #143b2e 0%, #0a2a20 55%, #061c15 100%);
  background-size: cover; background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,28,21,0.45) 0%, rgba(6,28,21,0.65) 100%); }

.hero-content { position: relative; z-index: 2; padding: 100px 20px 80px; max-width: 880px; }
.hero-logo { width: clamp(180px, 40vw, 260px); height: auto; margin: 0 auto 26px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45)); animation: fadeUp 0.9s ease both; }

.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #46d160; box-shadow: 0 0 0 0 rgba(70,209,96,0.7); animation: pulseDot 2s infinite; }
.badge-loc { color: var(--gold-light); border-color: rgba(212,175,55,0.4); }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(70,209,96,0.7);} 70%{box-shadow:0 0 0 10px rgba(70,209,96,0);} 100%{box-shadow:0 0 0 0 rgba(70,209,96,0);} }

.hero-title {
  font-size: clamp(2.3rem, 7vw, 4.4rem); margin-bottom: 18px; letter-spacing: 0.5px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4); animation: fadeUp 0.9s ease both;
}
.hero-subtitle { font-size: clamp(1.05rem, 2.6vw, 1.45rem); color: var(--gold-light); font-weight: 500; margin-bottom: 16px; animation: fadeUp 0.9s 0.15s ease both; }
.hero-desc { font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 36px; animation: fadeUp 0.9s 0.3s ease both; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s 0.45s ease both; }

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

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 5px; height: 8px; background: var(--gold-light); border-radius: 3px; animation: scrollMove 1.6s ease infinite; }
@keyframes scrollMove { 0%{opacity:0;top:8px;} 40%{opacity:1;} 80%{opacity:0;top:24px;} 100%{opacity:0;} }

/* -------------------- SECTION SHARED -------------------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block; color: var(--gold-deep); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4.5vw, 2.7rem); color: var(--green); position: relative; }
.section-title::after { content: ''; display: block; width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 16px auto 0; border-radius: 3px; }
.section-lead { margin-top: 18px; color: var(--muted); font-size: 1.02rem; }

/* -------------------- IMAGE PLACEHOLDERS --------------------
   DEVELOPER NOTE: These gradient placeholders simulate food/interior photos.
   Replace the corresponding elements with real <img> tags. */
.ph {
  position: relative; background-size: cover; background-position: center;
  display: grid; place-items: center; color: rgba(255,255,255,0.85);
}
.ph::after {
  content: 'Image Placeholder'; position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.5px; background: rgba(0,0,0,0.35); padding: 3px 10px; border-radius: 20px;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.ph:hover::after { opacity: 1; }

.ph-karahi   { background-image: linear-gradient(135deg, #8a3a12, #c75b1e); }
.ph-tandoori { background-image: linear-gradient(135deg, #9a2d1f, #d4632f); }
.ph-bbq      { background-image: linear-gradient(135deg, #5c2310, #a13d18); }
.ph-platter  { background-image: linear-gradient(135deg, #2a5e3f, #4d8c5f); }
.ph-meal     { background-image: linear-gradient(135deg, #7a5a1e, #b58a2e); }
.ph-interior { background-image: linear-gradient(135deg, #143b2e, #2a6047); }
.ph-family   { background-image: linear-gradient(135deg, #3a3220, #6e5e34); }
.ph-menu     { background-image: linear-gradient(135deg, #0f3b2e, #1a5240); }

/* -------------------- OFFERS -------------------- */
.offers { background: linear-gradient(180deg, var(--cream), #f3ede0); }
.offer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.offer-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-ribbon {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: var(--green); color: var(--gold-light); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
}
.offer-img { height: 230px; }
.offer-body { padding: 26px 28px 30px; text-align: center; }
.offer-body h3 { font-size: 1.55rem; color: var(--green); margin-bottom: 8px; }
.offer-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.offer-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--gold-deep); margin-bottom: 20px; }
.offer-price .rs { font-size: 1.1rem; font-weight: 600; vertical-align: super; margin-right: 4px; }
.offer-cta { text-align: center; margin-top: 44px; }

/* -------------------- ABOUT -------------------- */
.about-grid { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
.about-media { position: relative; }
.about-img { height: 360px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -22px; right: 22px; background: var(--gold);
  color: var(--green-deep); padding: 16px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
}
.about-badge-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.about-badge-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.about-text .eyebrow { margin-bottom: 10px; }
.about-text .section-title { text-align: left; }
.about-text .section-title::after { margin-left: 0; }
.about-text p { color: #4a4a4a; margin: 22px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--green); }
.af-ico { width: 38px; height: 38px; flex: none; display: grid; place-items: center; background: rgba(212,175,55,0.15); border-radius: 50%; }
.af-ico .ico { width: 20px; height: 20px; fill: var(--green); }

/* -------------------- FEATURED -------------------- */
.featured-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.food-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.food-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.food-img { height: 200px; }
.food-card:hover .food-img { filter: brightness(1.05); }
.food-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.food-body h3 { font-size: 1.25rem; color: var(--green); margin-bottom: 8px; }
.food-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }

/* -------------------- MENU -------------------- */
.menu { background: var(--green); color: var(--white); }
.menu .section-title { color: var(--white); }
.menu .eyebrow { color: var(--gold-light); }
.menu .section-lead { color: rgba(255,255,255,0.75); }
.menu-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.menu-thumb {
  border: 2px solid rgba(212,175,55,0.4); border-radius: var(--radius); cursor: pointer;
  height: 320px; padding: 0; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.menu-thumb:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-label { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-light); }
.menu-note { text-align: center; margin-top: 30px; color: rgba(255,255,255,0.7); font-size: 0.9rem; font-style: italic; }

/* -------------------- GALLERY -------------------- */
.masonry { columns: 2; column-gap: 16px; }
.gallery-item {
  width: 100%; height: 180px; margin-bottom: 16px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; padding: 0; border: none; break-inside: avoid;
  position: relative; transition: transform 0.4s ease;
}
.gallery-item.tall { height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-color: rgba(15,59,46,0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8C766'%3E%3Cpath d='M15.5 14h-.79l-.28-.27a6.5 6.5 0 1 0-.7.7l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0A4.5 4.5 0 1 1 14 9.5 4.5 4.5 0 0 1 9.5 14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 0 0;
  opacity: 0; transition: opacity 0.35s, background-color 0.35s, background-size 0.35s;
}
.gallery-item:hover::before { opacity: 1; background-color: rgba(15,59,46,0.35); background-size: 36px 36px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { transform: translateY(-4px); }

/* -------------------- WHY CHOOSE US -------------------- */
.why { background: linear-gradient(180deg, #f3ede0, var(--cream)); }
.why-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px; text-align: center;
  box-shadow: var(--shadow-sm); border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-ico {
  display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 16px;
  border-radius: 50%; background: rgba(212,175,55,0.15);
}
.why-ico .ico { width: 30px; height: 30px; fill: var(--gold-deep); }
.why-card h3 { color: var(--green); font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

/* -------------------- REVIEWS -------------------- */
.reviews-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative; border-top: 4px solid var(--gold);
}
.review-card::before {
  content: '\201C'; position: absolute; top: 6px; right: 24px;
  font-family: var(--font-head); font-size: 4.5rem; color: rgba(212,175,55,0.25); line-height: 1;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { color: #3a3a3a; font-size: 1rem; font-style: italic; margin-bottom: 22px; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--green); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: var(--gold-light); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }

/* -------------------- CONTACT -------------------- */
.contact { background: linear-gradient(180deg, var(--cream), #f3ede0); }
.contact-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.contact-list { margin-bottom: 28px; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(15,59,46,0.1); }
.ci-ico { flex: none; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(212,175,55,0.15); border-radius: 50%; }
.ci-ico .ico { width: 22px; height: 22px; fill: var(--green); }
.contact-list strong { display: block; color: var(--green); font-family: var(--font-head); font-size: 1.05rem; }
.contact-list p { color: var(--muted); font-size: 0.95rem; }
.contact-list a { color: var(--gold-deep); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }
.contact-actions { display: grid; gap: 12px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; height: 100%; }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; display: block; }

/* -------------------- FOOTER -------------------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: 18px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.3s, transform 0.3s; }
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: var(--gold-light); transition: fill 0.3s; }
.socials a:hover svg { fill: var(--green-deep); }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.92rem; transition: color 0.2s, padding-left 0.2s; }
.footer-nav a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact a { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* -------------------- FLOATING WHATSAPP -------------------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1200;
  display: flex; align-items: center; gap: 0; background: #25D366; color: var(--white);
  border-radius: 50px; padding: 0; height: 60px; width: 60px; overflow: hidden;
  box-shadow: 0 8px 26px rgba(37,211,102,0.5); transition: width 0.35s ease, padding 0.35s ease;
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); flex: none; margin: 0 15px; }
.wa-float-label { font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity 0.3s; padding-right: 22px; }
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px; z-index: -1;
  background: #25D366; animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (hover: hover) {
  .wa-float:hover { width: 190px; padding-right: 4px; }
  .wa-float:hover .wa-float-label { opacity: 1; }
}

/* -------------------- LIGHTBOX -------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6,18,13,0.94);
  display: flex; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; animation: fadeIn 0.3s forwards;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { to { opacity: 1; } }
.lightbox-stage { max-width: 90vw; max-height: 86vh; display: grid; place-items: center; }
.lightbox-stage img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-ph {
  width: min(80vw, 640px); height: min(70vh, 720px); border-radius: 12px;
  display: grid; place-items: center; color: #fff; font-family: var(--font-head);
  font-size: 1.4rem; text-align: center; padding: 20px;
}
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.lightbox-close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: var(--green-deep); }

/* -------------------- SCROLL REVEAL -------------------- */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* =================================================================
   RESPONSIVE — TABLET & DESKTOP
   ================================================================= */
@media (min-width: 600px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3; }
}

@media (min-width: 900px) {
  .section { padding: 100px 0; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr; }
  .masonry { columns: 4; }
}

/* -------------------- MOBILE NAV -------------------- */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--green); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px; padding: 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(.16,1,.3,1);
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { margin-top: 10px; }
  .navbar { background: var(--green); }
  .navbar:not(.scrolled) { background: linear-gradient(180deg, rgba(6,28,21,0.85), transparent); }
}

/* -------------------- REDUCED MOTION -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Screenshot/QA helper only — collapses hero height when ?shot=1 is present */
.shot .hero { min-height: 200px; }
