/* ==========================================================================
   LUMIÈRE — Luxury Fine Dining Landing Page
   Theme: deep charcoal + champagne gold, elegant serif
   ========================================================================== */

:root {
  --bg: #0b0b0c;
  --bg-soft: #131416;
  --bg-card: #17181b;
  --gold: #c9a961;
  --gold-light: #e8cf9a;
  --gold-deep: #a8883f;
  --cream: #f4efe6;
  --muted: rgba(244, 239, 230, 0.62);
  --line: rgba(201, 169, 97, 0.28);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.75);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; color: var(--gold-light); }

::selection { background: var(--gold); color: #14100a; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2b2e; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.14) 0%, rgba(201, 169, 97, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s ease;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1000;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
  overflow: hidden;
  border: 1px solid transparent;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn:hover::before { left: 150%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #14100a;
  border-color: transparent;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(201, 169, 97, 0.55); }

.btn-ghost {
  color: var(--gold-light);
  border-color: var(--line);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.nav.scrolled {
  height: 66px;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.nav-logo .dot { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  position: relative;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
  padding: 6px 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--cream); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-reserve { padding: 12px 26px; font-size: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  z-index: 120;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--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;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11, 11, 12, 0.25) 0%, rgba(11, 11, 12, 0.78) 100%),
    linear-gradient(to bottom, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.2) 40%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 6vw; }

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4.2rem, 13vw, 10rem);
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fffdf6 20%, var(--gold-light) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}
.hero-type {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: var(--cream);
  min-height: 1.6em;
  letter-spacing: 0.03em;
}
.caret {
  display: inline-block;
  width: 2px;
  margin-left: 4px;
  background: var(--gold);
  animation: blink 0.85s step-end infinite;
  vertical-align: baseline;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1px solid rgba(244, 239, 230, 0.4);
  border-radius: 14px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Hero intro animation ---------- */
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeUp 1.1s var(--ease) forwards; }
.fade-in:nth-child(1) { animation-delay: 0.3s; }
.fade-in:nth-child(2) { animation-delay: 0.55s; }
.fade-in:nth-child(3) { animation-delay: 0.8s; }
.fade-in:nth-child(4) { animation-delay: 1.05s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Shared section styles
   ========================================================================== */
.section { padding: clamp(90px, 12vw, 150px) 6vw; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.section-head { text-align: center; margin-bottom: clamp(50px, 7vw, 84px); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-images { position: relative; padding-bottom: 60px; }
.about-img-main {
  width: 82%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.18);
  box-shadow: var(--shadow);
}
.about-img-main img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-img-main:hover img { transform: scale(1.06); }
.about-img-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  border-radius: 2px;
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow);
}
.about-img-accent img { aspect-ratio: 3 / 4; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-img-accent:hover img { transform: scale(1.06); }

.about-text .section-title { margin-bottom: 26px; }
.about-p { color: var(--muted); margin-bottom: 18px; max-width: 52ch; }

.stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin: 40px 0 42px;
  flex-wrap: wrap;
}
.stat {
  position: relative;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
  display: inline-block;
}
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); }
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu { background: var(--bg-soft); position: relative; }
.menu::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 36px);
  max-width: 1280px;
  margin: 0 auto;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease, border-color 0.45s ease;
  transform-style: preserve-3d;
}
.menu-card-img { overflow: hidden; }
.menu-card-img img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.1); filter: saturate(1.1); }
.menu-card-body { padding: 28px 26px 34px; }
.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.menu-card-head h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.02em; }
.menu-card-head .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.menu-card-body p { color: var(--muted); font-size: 0.95rem; }

.menu-cta { text-align: center; margin-top: clamp(44px, 6vw, 70px); }

/* 3D tilt */
.tilt { transform: perspective(1000px); }
.tilt .tilt-inner { transform-style: preserve-3d; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.gallery-item figcaption {
  position: absolute;
  left: 20px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Reviews slider
   ========================================================================== */
.reviews { background: var(--bg-soft); position: relative; }
.reviews::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 70px;
}
.slider-track { position: relative; min-height: 320px; }
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
}
.slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 28px;
}
.slide blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.5;
  color: var(--cream);
  max-width: 60ch;
  margin-bottom: 30px;
}
.slide-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.slide-role {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.4);
  color: var(--gold-light);
  font-size: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.slider-btn:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ==========================================================================
   Reservation
   ========================================================================== */
.reservation { background: var(--bg); }
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 90px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.reservation-info .section-title { margin-bottom: 24px; }
.reservation-info > p { color: var(--muted); max-width: 46ch; }
.reservation-meta { margin-top: 40px; }
.reservation-meta li {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.14);
}
.reservation-meta li:last-child { border-bottom: 1px solid rgba(201, 169, 97, 0.14); }
.reservation-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.reservation-form {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 97, 0.14);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-field label .opt { color: rgba(244, 239, 230, 0.4); letter-spacing: 0.08em; }
.form-field input,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 11, 12, 0.6);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a961' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-field select option { background: var(--bg-soft); color: var(--cream); }
.form-field input.invalid,
.form-field select.invalid { border-color: #d45757; }
.form-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #e08a8a;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-field .form-error.show { opacity: 1; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 10px;
}
.form-success.show { display: flex; animation: pop 0.6s var(--ease); }
@keyframes pop { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  animation: checkPulse 1.6s var(--ease) infinite;
}
@keyframes checkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
  50% { box-shadow: 0 0 0 18px rgba(201, 169, 97, 0); }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.form-success p { color: var(--muted); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: clamp(110px, 15vw, 190px) 6vw;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: -40px 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11, 11, 12, 0.55) 30%, rgba(11, 11, 12, 0.72) 70%, var(--bg) 100%);
}
.cta-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 44px;
}
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  padding: 70px 6vw 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 50px;
}
.footer-brand p { color: var(--muted); margin-top: 18px; max-width: 36ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col p { color: var(--muted); font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: #14100a; border-color: var(--gold); transform: translateY(-4px); }

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  color: rgba(244, 239, 230, 0.4);
  font-size: 0.8rem;
}
.footer-bottom .heart { color: var(--gold); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure {
  max-width: min(88vw, 1000px);
  max-height: 84vh;
  text-align: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.9);
  animation: pop 0.5s var(--ease);
}
.lightbox-figure figcaption {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  transition: color 0.3s ease, transform 0.3s var(--ease);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.5);
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lightbox-btn:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }
.lightbox-btn.prev { left: 28px; }
.lightbox-btn.next { right: 28px; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.to-top {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease), background 0.3s ease, visibility 0.35s;
  z-index: 90;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #14100a; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 110;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.05rem !important; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 560px; margin: 0 auto; }

  .menu-cards { grid-template-columns: 1fr; max-width: 480px; }

  .reservation-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .slider { padding: 0 0 40px; }
  .slider-track { min-height: 380px; }
  .slider-btn { display: none; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .stats { gap: 22px; }
}

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