/* ============================================================
   CURRY CORNER — MODERN STYLESHEET
   ============================================================ */

:root {
  --gold:        #ccad52;
  --gold-light:  #e8d68a;
  --gold-dark:   #a88a30;
  --dark:        #1a1a1a;
  --darker:      #0f0f0f;
  --dark-mid:    #222;
  --text:        #575757;
  --text-muted:  #888;
  --white:       #fff;
  --off-white:   #fafaf8;
  --border:      #e6ddd1;
  --nav-h:       76px;
  --ease:        0.35s ease;
  --shadow:      0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 50px rgba(0,0,0,0.22);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }
button { cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { display: flex; gap: 10px; }

.preloader-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  animation: pdot 0.8s ease-in-out infinite alternate;
}
.preloader-dot:nth-child(2) { animation-delay: 0.22s; }
.preloader-dot:nth-child(3) { animation-delay: 0.44s; }

@keyframes pdot {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(-18px); opacity: 0.3; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--ease), height var(--ease), box-shadow var(--ease);
}
#navbar.scrolled {
  background: rgba(12, 12, 12, 0.96);
  height: 62px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 48px; width: auto;
  transition: height var(--ease);
}
#navbar.scrolled .logo-img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 14px;
  position: relative;
  opacity: 0.88;
  transition: color var(--ease), opacity var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: url(../images/hero-bg.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  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) 55%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
}

.hero-pre {
  display: block;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  text-shadow: 2px 4px 24px rgba(0,0,0,0.35);
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-divider span { width: 64px; height: 1px; background: var(--gold); }
.hero-divider i { color: var(--gold); font-size: 0.75rem; }

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-slogans {
  height: 2em;
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-slogans .slogan { display: none; }
.hero-slogans .slogan.active {
  display: block;
  animation: sloganFade 0.55s ease;
}
@keyframes sloganFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}
.hero-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.88rem;
  transition: all var(--ease);
}
.hero-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  z-index: 1;
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: color var(--ease);
}
.hero-scroll:hover { color: var(--gold); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 100px 0; }
.section-light { background: var(--off-white); }

.section-heading { margin-bottom: 58px; }
.section-heading.centered { text-align: center; }

.section-pre {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.section-heading.light .section-title { color: var(--white); }

.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.section-heading.centered .section-divider { justify-content: center; }
.section-divider span:not(.dot) { flex: 0 0 48px; height: 1px; background: var(--gold); }
.section-divider .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.section-divider.light span:not(.dot),
.section-divider.light .dot { background: rgba(255,255,255,0.45); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUFFETS SECTION
   ============================================================ */
.section-buffets {
  background: var(--dark-mid);
  padding: 84px 0;
}
.section-buffets .container { text-align: center; }

.buffet-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.buffet-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.buffet-headline em { color: var(--gold); font-style: italic; }

.buffet-subline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  margin-bottom: 44px;
}

.buffet-dates {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.buffet-date {
  text-align: center;
  background: rgba(204,173,82,0.08);
  border: 1px solid rgba(204,173,82,0.25);
  border-radius: 6px;
  padding: 20px 36px;
  min-width: 140px;
  transition: all var(--ease);
}
.buffet-date:hover {
  background: rgba(204,173,82,0.16);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.buffet-date .month {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.buffet-date .days {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  padding: 0 20px 20px 0;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--gold);
  border-radius: 3px;
  opacity: 0.55;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--dark);
  margin-bottom: 22px;
  font-style: italic;
}
.about-content p {
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.82;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.about-badges span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(204,173,82,0.1);
  border: 1px solid rgba(204,173,82,0.28);
  border-radius: 3px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-badges i { font-size: 0.72rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 2px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  margin-top: 30px;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   TUESDAY SPECIAL (PARALLAX)
   ============================================================ */
.tuesday-special {
  position: relative;
  background: url(../images/parallax-bg.jpg) center center / cover no-repeat fixed;
  padding: 120px 0;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 2, 0.82);
}
.tuesday-special .container { position: relative; z-index: 1; }
.centered-text { text-align: center; }

.slogan-pre {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.slogan-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.slogan-main em { color: var(--gold); font-style: normal; }
.slogan-sub {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.section-menu { background: var(--white); }

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 22px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.menu-tab:hover { color: var(--gold); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active {
  display: block;
  animation: panelIn 0.38s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: 48px;
  row-gap: 0;
}
.menu-item {
  display: flex;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  color: var(--dark);
  flex-shrink: 0;
}
.item-dots {
  flex: 1;
  border-bottom: 2px dotted #ddd;
  margin: 0 10px;
  margin-bottom: 4px;
}
.item-price {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px 240px;
  gap: 8px;
}
/* Asymmetric layout */
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: 3;     grid-row: 1; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 4;     grid-row: 1; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 3;     grid-row: 2; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: 4;     grid-row: 2; }
.gallery-grid .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
.gallery-grid .gallery-item:nth-child(7) { grid-column: 3;     grid-row: 3; }
.gallery-grid .gallery-item:nth-child(8) { grid-column: 4;     grid-row: 3; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  border-radius: 2px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.06); opacity: 0.68; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--white);
  font-size: 1.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
  position: absolute;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(204,173,82,0.28);
  border-color: var(--gold);
}
#lightbox-close { top: 22px; right: 22px; }
#lightbox-prev  { left: 22px; top: 50%; transform: translateY(-50%); }
#lightbox-next  { right: 22px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   RESERVATIONS
   ============================================================ */
.section-reserve {
  position: relative;
  background: url(../images/slogan-bg.jpg) center center / cover no-repeat fixed;
  padding: 108px 0;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,6,1,0.88) 0%, rgba(28,22,5,0.88) 100%);
}
.section-reserve .container { position: relative; z-index: 1; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(204,173,82,0.2);
  border-radius: 6px;
  padding: 44px 28px;
  text-align: center;
  color: var(--white);
  display: block;
  transition: all var(--ease);
}
.contact-card:hover {
  background: rgba(204,173,82,0.09);
  border-color: var(--gold);
  transform: translateY(-5px);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.contact-icon {
  width: 62px; height: 62px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: all var(--ease);
}
.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
}
.whatsapp-card .contact-icon { border-color: #25d366; color: #25d366; }
.whatsapp-card:hover .contact-icon { background: #25d366; border-color: #25d366; }

.contact-card h3 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.contact-card p {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.45;
}
.contact-cta {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(204,173,82,0.3);
  padding-bottom: 2px;
  transition: border-color var(--ease);
}
.contact-card:hover .contact-cta { border-color: var(--gold); }

.reserve-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.9;
}
.reserve-note a { color: var(--gold); border-bottom: 1px solid rgba(204,173,82,0.35); }
.reserve-note a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--darker); }

.footer-main {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr;
  gap: 52px;
}

.footer-logo {
  height: 48px; width: auto;
  margin-bottom: 22px;
  opacity: 0.88;
}
.footer-brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 26px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  transition: all var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-contact h4,
.footer-nav h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,0.44);
  font-size: 0.88rem;
  margin-bottom: 13px;
}
.footer-contact p i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px;
}
.footer-contact a:hover { color: var(--gold); }

.footer-nav li { margin-bottom: 11px; }
.footer-nav a {
  color: rgba(255,255,255,0.44);
  font-size: 0.88rem;
  padding-left: 16px;
  position: relative;
  transition: color var(--ease), padding-left var(--ease);
}
.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--ease);
}
.footer-nav a:hover { color: var(--white); padding-left: 18px; }
.footer-nav a:hover::before { opacity: 1; }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--ease);
  z-index: 900;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-cards .contact-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: rgba(8,8,8,0.97);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 36px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1rem;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 1;
  }
  .nav-links a::after { display: none; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-grid .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-grid .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .gallery-grid .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }
  .gallery-grid .gallery-item:nth-child(7) { grid-column: 1; grid-row: 5; }
  .gallery-grid .gallery-item:nth-child(8) { grid-column: 2; grid-row: 5; }

  /* Contacts */
  .contact-cards { grid-template-columns: 1fr; }
  .contact-cards .contact-card:nth-child(3) { grid-column: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Parallax fallback on mobile */
  .tuesday-special,
  .section-reserve { background-attachment: scroll !important; }

  /* Menu grid */
  .menu-grid { grid-template-columns: 1fr; column-gap: 0; }

  /* Buffet dates */
  .buffet-dates { gap: 14px; }
  .buffet-date { padding: 16px 24px; min-width: 120px; }

  /* lightbox buttons */
  #lightbox-prev { left: 10px; }
  #lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .about-badges { gap: 8px; }
  .about-badges span { font-size: 0.68rem; padding: 5px 10px; }
  .buffet-dates { flex-direction: column; align-items: center; }
}
