/* ============================================================
   Ca'De Burger — Main Stylesheet
   ============================================================ */

:root {
  --red:       #CC0000;
  --red-dark:  #990000;
  --red-light: #e60000;
  --gold:      #F5A623;
  --dark:      #0f0f0f;
  --dark-2:    #1a1a1a;
  --dark-3:    #242424;
  --dark-4:    #2e2e2e;
  --white:     #ffffff;
  --gray:      #888888;
  --gray-lt:   #b0b0b0;

  --font-h: 'Playfair Display', serif;
  --font-b: 'Inter', sans-serif;
  --ease:   0.3s ease;
  --r:      12px;
  --r-sm:   8px;
  --shadow: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 14px 50px rgba(0,0,0,0.55);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.section { padding: 100px 0; }

/* ---- Type helpers ---- */
.label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .section-desc { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,0,0,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-fb {
  background: transparent;
  color: #1877f2;
  border-color: #1877f2;
}
.btn-fb:hover {
  background: #1877f2;
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(18px);
  padding: 13px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 56px; width: auto; transition: height var(--ease); }
.navbar.scrolled .logo-img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark-2);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(15,15,15,0.92) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 0 20px;
  animation: fadeUp 1.1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-accent { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-line {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line span {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   STATUS BAR
   ============================================================ */
.status-bar {
  background: var(--dark-3);
  border-bottom: 1px solid var(--dark-4);
  padding: 13px 0;
  font-size: 0.86rem;
}
.status-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.open {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: blink 2s ease infinite;
}
.status-dot.closed { background: var(--gray); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.45} }
#statusText { font-weight: 600; }
.status-schedule { color: var(--gray); margin-left: auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-stats {
  display: flex;
  gap: 36px;
  padding: 28px 0;
  margin: 30px 0;
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
}
.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: rgba(255,255,255,0.78);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}
.chip i { color: var(--gold); }

.about-img-wrap { position: relative; }
.about-img-box {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-box:hover img { transform: scale(1.04); }
.about-img-deco {
  position: absolute;
  top: -18px; right: -18px;
  width: 180px; height: 180px;
  border: 2px solid var(--red);
  border-radius: var(--r);
  z-index: -1;
  opacity: 0.35;
}

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--dark); }
.menu-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid var(--dark-4);
  background: var(--dark-3);
  color: var(--gray);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
}
.tab:hover, .tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.menu-card {
  background: var(--dark-2);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--dark-4);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(204,0,0,0.28);
}
.menu-card.hidden { display: none; }
.card-img {
  height: 180px;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .card-img img { transform: scale(1.07); }
.placeholder-img {
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}
.card-body { padding: 20px; }
.card-body h3 {
  font-family: var(--font-h);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.card-body p {
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 15px;
}
.price-soon {
  color: var(--gray);
  font-size: 0.78rem;
  font-style: italic;
}
.price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

/* Popular / Signature badge on card image */
.placeholder-img.has-badge { position: relative; }
.pop-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.pop-badge.sig { background: var(--gold); color: var(--dark); }

/* Drinks / Extras list cards */
.menu-list-card {
  grid-column: span 1;
}
.list-body {
  padding: 28px 24px;
}
.list-body h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-4);
}
.price-list { display: flex; flex-direction: column; gap: 0; }
.pl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-4);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.pl-row:last-child { border-bottom: none; }
.pl-row.border-top { border-top: 1px solid var(--dark-4); margin-top: 8px; padding-top: 18px; }
.pl-row .price { font-size: 0.95rem; }
.menu-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-top: 42px;
  color: var(--gray);
  font-size: 0.9rem;
}
.menu-note i { color: var(--gold); }
.menu-note a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1;
  transition-delay: var(--d, 0s);
}
.g-wide { grid-column: span 2; aspect-ratio: 2/1; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(204,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  opacity: 0;
  transition: all var(--ease);
}
.g-item:hover img { transform: scale(1.07); }
.g-item:hover .g-overlay { opacity: 1; background: rgba(204,0,0,0.38); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  user-select: none;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--red); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.feat-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--r);
  padding: 42px 28px;
  text-align: center;
  transition: all var(--ease);
}
.feat-card:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feat-icon {
  width: 66px; height: 66px;
  background: rgba(204,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.55rem;
  color: var(--red);
  transition: all var(--ease);
}
.feat-card:hover .feat-icon { background: var(--red); color: var(--white); }
.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.feat-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.72; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--dark-2); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.info-row {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row h4 { font-weight: 600; margin-bottom: 5px; }
.info-row p, .info-row a {
  color: var(--gray-lt);
  font-size: 0.9rem;
  line-height: 1.7;
}
.info-row a:hover { color: var(--gold); }
.dir-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red) !important;
  font-size: 0.84rem;
  font-weight: 500;
  margin-top: 6px;
  transition: gap var(--ease);
}
.dir-link:hover { gap: 9px; }
.hours-tbl { border-collapse: collapse; margin-top: 4px; }
.hours-tbl td {
  padding: 4px 20px 4px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
}
.hours-tbl td:first-child { color: var(--gray); min-width: 95px; }
.day-closed td { color: var(--red) !important; opacity: 0.8; }
.loc-map {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-4);
}
.loc-map iframe { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--dark); }
.contact-card {
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(204,0,0,0.07) 100%);
  border: 1px solid rgba(204,0,0,0.18);
  border-radius: 20px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-left h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 12px 0 18px;
}
.contact-left p {
  color: var(--gray-lt);
  line-height: 1.85;
  margin-bottom: 34px;
}
.contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.review-card {
  background: var(--dark-3);
  border-radius: var(--r-sm);
  padding: 24px;
  margin-bottom: 16px;
}
.review-card:last-child { margin-bottom: 0; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-card p {
  color: rgba(255,255,255,0.78);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.review-card span { color: var(--gray); font-size: 0.78rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 72px 0 52px;
}
.footer-logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.92rem;
  transition: all var(--ease);
}
.social-links a:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--white);
  transform: translateY(-3px);
}
.footer-nav h4, .footer-info h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.86rem;
  margin-bottom: 11px;
}
.footer-info i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-info a { color: var(--gray); }
.footer-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-4);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(204,0,0,0.5);
  z-index: 900;
  transition: all var(--ease);
  animation: callPulse 3s ease infinite;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(204,0,0,0.65);
}
@keyframes callPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(204,0,0,0.5); }
  50%      { box-shadow: 0 4px 28px rgba(204,0,0,0.75), 0 0 0 9px rgba(204,0,0,0.1); }
}
.top-btn {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: all var(--ease);
}
.top-btn.show { opacity: 1; transform: translateY(0); }
.top-btn:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right { transform: translateX(40px) !important; }
.reveal-right.visible { transform: translateX(0) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap { order: -1; max-width: 480px; margin: 0 auto; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 52px 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 30px;
    transition: right 0.38s ease;
    box-shadow: -6px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-wide { grid-column: span 2; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .contact-card { padding: 40px 24px; }
  .about-stats { gap: 22px; justify-content: center; }
  .status-schedule { display: none; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4.2rem); }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: auto; aspect-ratio: 1; }
  .hero-cta { flex-direction: column; align-items: center; }
  .menu-tabs { gap: 7px; }
  .tab { padding: 8px 16px; font-size: 0.82rem; }
  .about-stats { flex-direction: column; gap: 18px; text-align: center; }
  .contact-btns { flex-direction: column; }
}

/* ---- Privacy Policy link in footer ---- */
.privacy-link {
  background: none;
  border: none;
  color: var(--gray);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color var(--ease);
}
.privacy-link:hover { color: var(--gray-lt); }

/* ---- Privacy Policy Modal ---- */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal.open { display: flex; }

.privacy-box {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--r);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  color: var(--gray-lt);
  font-size: 0.95rem;
  line-height: 1.7;
}
.privacy-box h2 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.privacy-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.privacy-box h3 {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 6px;
}
.privacy-box p { margin-bottom: 10px; }
.privacy-box a { color: var(--gold); }
.privacy-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--ease);
}
.privacy-close:hover { color: var(--white); }
