/* ===== ROOT & BASE ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #f0d060;
  --gold-dark: #a8892a;
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-border: #1e1e1e;
  --white: #ffffff;
  --white-muted: rgba(255,255,255,0.7);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ===== REUSABLE ===== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-heading em { color: var(--gold); font-style: italic; }
.section-heading.light { color: var(--white); }

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { box-shadow: 0 0 30px rgba(212,175,55,0.5); transform: translateY(-2px); color: var(--black); }

.btn-outline-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#mainNav {
  padding: 1.2rem 0;
  background: transparent;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(0,0,0,0.97);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(10px);
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}
.navbar-brand:hover .nav-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after { width: 80%; }
.btn-reserve {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.btn-reserve:hover { box-shadow: 0 0 20px rgba(212,175,55,0.5); transform: translateY(-1px); color: var(--black); }
.toggler-icon { color: var(--gold); font-size: 1.6rem; }
.navbar-toggler { border: none; box-shadow: none !important; }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=90') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.4s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.4s 0.2s ease both;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  text-shadow: none;
  animation: heroFadeIn 1.4s 0.3s ease both;
}
.gold-ornament {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.2)} }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
  animation: heroFadeIn 1.4s 0.4s ease both;
}
.hero-cuisines {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.4s 0.5s ease both;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  animation: heroFadeIn 1.4s 0.6s ease both;
}
.hero-divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-divider i { color: var(--gold); font-size: 0.6rem; }
.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-heading);
  animation: heroFadeIn 1.4s 0.7s ease both;
}
.hero-btns { animation: heroFadeIn 1.4s 0.9s ease both; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: heroFadeIn 1.4s 1.2s ease both;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 1.5s infinite;
}
@keyframes scrollPulse { 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} }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 0;
  background: var(--black-soft);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.about-images-col {
  position: relative;
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  bottom: 2.5rem;
  right: -2rem;
  width: 220px;
  height: 160px;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.years-badge {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.years-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.years-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}
.about-text-col {
  padding: 6rem 5rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-soft);
}
.about-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.about-stats { border-top: 1px solid var(--black-border); padding-top: 1.5rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  background: var(--black-border);
  align-self: stretch;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.menu-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(212,175,55,0.03);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
}
.menu-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 1rem;
}
.menu-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--black-card);
  aspect-ratio: 1 / 1.1;
}
.menu-card--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.menu-card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.menu-card--wide {
  grid-column: span 2;
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.2) 100%);
}
.menu-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.menu-card--large .menu-card-title { font-size: 1.6rem; }
.menu-card-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.menu-card:hover .menu-card-desc { max-height: 60px; }
.menu-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.btn-gold-outline-lg {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.btn-gold-outline-lg:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

/* ===== CUISINE SECTION ===== */
.cuisine-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cuisine-bg {
  position: absolute;
  inset: 0;
}
.cuisine-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cuisine-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.88) 100%);
}
.cuisine-wheel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}
.cuisine-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.cuisine-item:hover { transform: translateY(-12px); }
.cuisine-icon-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.3);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cuisine-item:hover .cuisine-icon-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}
.cuisine-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.cuisine-item:hover .cuisine-icon-wrap img { transform: scale(1.15); }
.cuisine-icon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s;
}
.cuisine-item:hover .cuisine-icon-overlay { background: rgba(0,0,0,0.2); }
.cuisine-emoji {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.cuisine-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.cuisine-item:hover .cuisine-name { color: var(--gold); }
.cuisine-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  padding: 0 0.5rem;
}
.cuisine-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cuisine-item:hover .cuisine-line { transform: scaleX(1); }

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 7rem 0 0;
  background: var(--black-soft);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 0.5rem;
  margin-top: 2rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.g-item:hover img { transform: scale(1.08); filter: brightness(0.6); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 7rem 0;
  background: var(--black);
}
.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info-panel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}
.contact-info-bg {
  position: absolute;
  inset: 0;
}
.contact-info-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.75) 100%);
}
.contact-info-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,175,55,0.15);
}
.contact-panel-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.detail-value {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.detail-value:hover { color: var(--gold); }
.contact-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.contact-form {
  background: var(--black-card);
  padding: 2.5rem;
  border: 1px solid var(--black-border);
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group-custom {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.form-group-custom label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}
.form-group-custom select option { background: var(--black-card); }
.map-container { border: 1px solid var(--black-border); overflow: hidden; }
.map-container iframe { display: block; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* ===== FOOTER ===== */
.site-footer { background: #050505; border-top: 1px solid rgba(212,175,55,0.15); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-about-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.footer-links-col ul { list-style: none; padding: 0; }
.footer-links-col ul li { margin-bottom: 0.75rem; }
.footer-links-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.footer-links-col ul li a:hover { color: var(--gold); }
.footer-contact-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-col p i { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  color: white;
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.85);
  color: white;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-text-col { padding: 4rem 3rem; }
  .cuisine-wheel { grid-template-columns: repeat(3, 1fr); }
  .cuisine-item:nth-child(4),
  .cuisine-item:nth-child(5) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images-col { height: 60vw; }
  .about-img-accent { right: 1rem; }
  .menu-mosaic { grid-template-columns: repeat(2, 1fr); }
  .menu-card--large { grid-column: span 2; }
  .menu-card--tall { grid-row: span 1; }
  .menu-card--wide { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { min-height: 400px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .cuisine-wheel { grid-template-columns: repeat(2, 1fr); }
  .cuisine-item:last-child { grid-column: span 2; }
  .menu-mosaic { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .menu-card--large { grid-column: span 2; }
  .form-row-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .about-text-col { padding: 3rem 1.5rem; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 5rem; }
  .menu-mosaic { grid-template-columns: 1fr; }
  .menu-card--large, .menu-card--wide { grid-column: span 1; }
  .cuisine-wheel { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}
