/* ─────────────────────────────────────────
   개대박 랜딩페이지 — style.css
   ───────────────────────────────────────── */

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

:root {
  --fire:      #FF4500;
  --ember:     #FF6B35;
  --gold:      #F5A623;
  --charcoal:  #1A1A1A;
  --dark:      #111111;
  --surface:   #1E1E1E;
  --surface2:  #252525;
  --border:    rgba(255,255,255,0.08);
  --text:      #EEEEEE;
  --text-muted:#999999;
  --white:     #FFFFFF;

  --serif: 'Noto Serif KR', serif;
  --sans:  'Noto Sans KR', sans-serif;

  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

/* ── SECTION HEADER ───────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── NAVBAR ───────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--ember); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:hover::after { color: var(--white); width: 100%; }

.nav-links .nav-cta {
  background: var(--ember);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover  { background: var(--fire); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE MENU ──────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-close:hover { color: var(--ember); }

.mobile-menu ul { text-align: center; }
.mobile-menu li + li { margin-top: 24px; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--ember); }

/* ── HERO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255,69,0,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,107,53,0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.85) 60%, var(--dark) 100%);
  z-index: 1;
}

/* 배경 이미지 - CSS로 삽입 */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.genspark.ai/api/files/s/MEKBYYgr');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(1.2);
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-120vh) scale(0.3); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(255,69,0,0.3);
}

.hero-highlight {
  color: var(--ember);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 4px;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; transform: scaleX(0.8); }
  50%       { opacity: 1;   transform: scaleX(1); }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(255,107,53,0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,107,53,0.1);
  backdrop-filter: blur(8px);
}

.badge i { color: var(--ember); }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(255,69,0,0.4);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,69,0,0.5);
}

.hero-btn i { animation: bounce 1.5s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── FADE/REVEAL ANIMATIONS ───────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.30s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ── ABOUT ────────────────────────────── */
.about { background: var(--charcoal); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-text .section-eyebrow { margin-bottom: 8px; }

.about-body {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-body strong { color: var(--white); font-weight: 700; }

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.about-features li i { color: var(--ember); font-size: 1rem; }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 320px;
  gap: 16px;
}

.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.about-img-sub {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-main img,
.about-img-sub img {
  transition: transform 0.6s ease;
  object-fit: contain;
  object-position: center;
  background: #111;
}

.about-img-main:hover img,
.about-img-sub:hover img { transform: scale(1.04); }

/* ── STATS BAR ────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--fire) 0%, var(--ember) 50%, var(--gold) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 60px;
  flex: 1;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ── MENU SECTION ─────────────────────── */
.menu { background: var(--dark); }

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--surface);
  padding: 6px;
  border-radius: 100px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.tab-btn {
  flex: 1;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--sans);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,69,0,0.35);
}

.tab-btn:not(.active):hover {
  background: var(--surface2);
  color: var(--white);
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,107,53,0.3);
}

.menu-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-card-img img {
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-badge-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-badge-tag.best { background: var(--fire); color: var(--white); }
.menu-badge-tag.new  { background: var(--gold); color: var(--dark); }

.menu-card-body { padding: 20px 22px 22px; }

.menu-card-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.menu-card-body > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.menu-card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ember);
}

.price small {
  font-size: 0.85rem;
  font-family: var(--sans);
}

.weight {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface2);
  padding: 3px 10px;
  border-radius: 100px;
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 0;
}

/* ── GALLERY ──────────────────────────── */
.gallery { background: var(--charcoal); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.g-tall  { grid-row: span 2; }
.gallery-item.g-wide  { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* ── VIDEO SECTION ────────────────────── */
.video-section { background: var(--dark); }

.video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}

.video-wrap video {
  width: 100%;
  display: block;
  max-height: 700px;
  object-fit: contain;
  background: #000;
}

.video-label {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  pointer-events: none;
  transition: opacity var(--transition);
}

.video-wrap:hover .video-label { opacity: 0; }

.video-label i { color: var(--ember); }

/* ── CTA BANNER ───────────────────────── */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(255,69,0,0.9), rgba(255,107,53,0.85)),
    url('https://www.genspark.ai/api/files/s/Qsfg3bTR') center/cover;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.2), transparent 70%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-title span {
  background: rgba(255,255,255,0.25);
  padding: 0 8px;
  border-radius: 6px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--fire);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

/* ── LOCATION ─────────────────────────── */
.location { background: var(--charcoal); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-placeholder {
  background: var(--surface);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  text-align: center;
  padding: 24px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--ember);
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.map-sub {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

.map-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,69,0,0.4);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-list li i {
  font-size: 1.2rem;
  color: var(--ember);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.info-list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-list p {
  color: var(--white);
  font-size: 0.95rem;
}

.info-list p a {
  color: var(--ember);
  transition: color var(--transition);
}

.info-list p a:hover { color: var(--fire); }

.info-small {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}

.sns-links { margin-top: 8px; }

.sns-links p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sns-btns { display: flex; gap: 12px; }

.sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: transform var(--transition), opacity var(--transition);
}

.sns-btn:hover { transform: translateY(-3px); opacity: 0.85; }

.sns-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--white);
}

.sns-btn.kakao {
  background: #FEE500;
  color: #3C1E1E;
}

/* ── FOOTER ───────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.footer-logo span { color: var(--ember); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--ember); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── SCROLL TO TOP ────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,69,0,0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.scroll-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.scroll-top:hover { transform: translateY(-4px); }

/* ── LIGHTBOX ─────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,107,53,0.5); }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { grid-template-rows: 360px 280px; }
  .menu-cards  { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(4rem, 18vw, 6rem); }

  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-item  { flex: 0 0 calc(50% - 12px); }
  .stat-divider { display: none; }

  .menu-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.g-tall  { grid-row: span 1; }
  .gallery-item.g-wide  { grid-column: span 2; }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; }

  .about-images { grid-template-columns: 1fr; grid-template-rows: 320px 260px; }
  .about-img-main { grid-column: 1; }
  .about-img-sub  { grid-column: 1; }

  .section-pad { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 8px; }
  .badge       { font-size: 0.72rem; padding: 6px 14px; }
  .hero-btn    { padding: 14px 28px; }

  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-item.g-tall { grid-row: span 1; }

  .stats-grid  { flex-direction: column; align-items: center; }
  .stat-item   { flex: 0 0 100%; }

  .scroll-top  { bottom: 20px; right: 20px; }
}
