/* =========================================================
   THE PALACE PLUS — Static stylesheet
   Palette: Navy deep / Gold / Ivory
   ========================================================= */

:root {
  --navy-deep: #14213d;
  --navy: #1f2d52;
  --gold: #d4a857;
  --gold-soft: #e8c98a;
  --background: #fdfcf8;
  --foreground: #1a1f33;
  --card: #ffffff;
  --muted: #f3f1ea;
  --muted-foreground: #6b6f7d;
  --border: #e5e2d7;
  --radius: 0.5rem;
  --shadow-luxe: 0 30px 80px -30px rgba(20, 33, 61, 0.45);
  --shadow-gold: 0 20px 60px -20px rgba(212, 168, 87, 0.45);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; font-weight: 700; line-height: 1.1; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--gold); }
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.gradient-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: var(--navy-deep); }
.gradient-navy { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 2rem;
  border-radius: 999px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: scale(1.03); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); color: white; backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
.navbar.scrolled {
  background: rgba(20, 33, 61, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.25);
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 48px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 56px; } }
.nav-links { display: none; gap: 2.25rem; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 1px; width: 0; background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; padding: 0.6rem 1.25rem; } }
.lang-switcher {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
..lang-switcher button {
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  background: transparent;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-switcher button.active,
.lang-switcher button:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: white;
}
.lang-switcher.mobile {
  display: inline-flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0;
}
@media (min-width: 768px) {
  .lang-switcher { display: inline-flex; }
  .lang-switcher.mobile { display: none; }
}
.nav-toggle { display: inline-flex; color: white; padding: 0.5rem; }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { padding: 1rem 1.5rem; }
.nav-mobile li a { display: block; padding: 0.75rem 0; color: rgba(255,255,255,0.9); }
.nav-mobile li a:hover { color: var(--gold); }
.nav-mobile .btn { display: block; text-align: center; margin-top: 0.75rem; }
.nav-mobile .nav-lang-mobile {
  margin: 1rem 0 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nav-mobile .lang-switcher.mobile {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.5rem;
}
.nav-mobile .lang-switcher.mobile button {
  border-color: rgba(255,255,255,0.25);
}

/* ==================== HERO ==================== */
.hero { position: relative; min-height: 100vh; overflow: hidden; isolation: isolate; color: white; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -1; }
.hero-bg { object-fit: cover; width: 100%; height: 100%; }
.hero-overlay { background: linear-gradient(180deg, rgba(20,33,61,0.85), rgba(20,33,61,0.55), rgba(20,33,61,0.95)); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 8rem 1.5rem 5rem;
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.hero-stars { display: flex; align-items: center; gap: 0.75rem; color: var(--gold); }
.hero-stars span { font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero h1 { font-size: clamp(2.75rem, 7vw, 6rem); margin-top: 2rem; max-width: 60rem; }
.hero h1 em { font-style: italic; }
.hero p { font-size: 1.1rem; margin-top: 2rem; max-width: 35rem; color: rgba(255,255,255,0.8); }
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); max-width: 35rem; }
.hero-stats .k { font-family: var(--font-display); font-size: 2rem; }
@media (min-width: 768px) { .hero-stats .k { font-size: 2.5rem; } }
.hero-stats .v { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* ==================== SECTION TITLES ==================== */
.section-title { text-align: center; max-width: 38rem; margin: 0 auto; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.section-title .divider { width: 6rem; height: 1px; margin: 1.5rem auto; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); }
.section-title p { color: var(--muted-foreground); margin-top: 1rem; }

/* ==================== FEATURES ==================== */
.features-grid { display: grid; gap: 1.5rem; margin-top: 4rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.feature-card { position: relative; padding: 1.5rem; border: 1px solid var(--border);
  border-radius: 12px; background: var(--card); transition: transform .3s, box-shadow .3s; overflow: hidden; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.feature-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 48px; height: 48px; border-radius: 10px; display: inline-flex;
  align-items: center; justify-content: center; background: var(--navy-deep); color: var(--gold); transition: background .3s, color .3s; }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy-deep); }
.feature-card h3 { font-size: 1.1rem; margin-top: 1.25rem; font-family: var(--font-sans); font-weight: 600; }
.feature-card p { color: var(--muted-foreground); font-size: 0.9rem; margin-top: 0.5rem; }

/* ==================== GALLERY ==================== */
.gallery-section { background: var(--muted); }
.gallery-grid {
  display: grid; gap: 0.75rem; margin-top: 3.5rem;
  grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; }
}
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20,33,61,0.7)); opacity: 0; transition: opacity .3s; }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(20,33,61,0.95); backdrop-filter: blur(10px); }
.lightbox.open { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; border-radius: 12px; box-shadow: var(--shadow-luxe); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: white;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 0.5rem; }
.lightbox-close:hover { color: var(--gold); border-color: var(--gold); }

/* ==================== STUDIOS ==================== */
.studios-header { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }
@media (min-width: 768px) { .studios-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.studios-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.02em; border: 1px solid var(--border); color: var(--muted-foreground); transition: all .2s; }
.chip:hover { border-color: var(--gold); color: var(--foreground); }
.chip.active { background: var(--navy-deep); color: white; border-color: var(--navy-deep); box-shadow: var(--shadow-luxe); }

.studios-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.studio-card { display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--border); border-radius: 16px; background: var(--card); transition: transform .3s, box-shadow .3s; }
.studio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-luxe); }
.studio-image { position: relative; height: 220px; overflow: hidden; }
.studio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.studio-card:hover .studio-image img { transform: scale(1.1); }
.studio-image::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20,33,61,0.6)); }
.studio-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(20,33,61,0.8); color: var(--gold); padding: 0.35rem 0.85rem;
  border-radius: 999px; font-size: 0.65rem; letter-spacing: 0.15em; backdrop-filter: blur(8px); }
.studio-label { position: absolute; bottom: 1rem; left: 1rem; z-index: 2; color: white; }
.studio-label .lvl { font-size: 0.65rem; letter-spacing: 0.15em; opacity: 0.8; }
.studio-label .num { font-family: var(--font-display); font-size: 1.75rem; }
.studio-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
  font-size: 0.85rem; color: var(--muted-foreground); }
.amenities li { display: flex; align-items: center; gap: 0.5rem; }
.amenities svg { color: var(--gold); }
.studio-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.price-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); }
.price { font-family: var(--font-display); font-size: 1.4rem; }
.price small { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 400; color: var(--muted-foreground); }
.studio-book { background: var(--navy-deep); color: white; padding: 0.6rem 1.25rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; transition: all .2s; }
.studio-book:hover { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy-deep); }

/* ==================== BOOKING ==================== */
.booking { position: relative; overflow: hidden; color: white;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.booking::before, .booking::after {
  content: ""; position: absolute; width: 24rem; height: 24rem; border-radius: 50%;
  background: rgba(212, 168, 87, 0.15); filter: blur(80px); pointer-events: none;
}
.booking::before { top: -8rem; right: 0; }
.booking::after { bottom: -8rem; left: 0; background: rgba(212,168,87,0.1); }
.booking-grid { display: grid; gap: 3.5rem; align-items: start; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 1fr 1.2fr; } }
.booking-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.booking-info .divider { width: 6rem; height: 1px; margin-top: 1.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); }
.booking-info p { color: rgba(255,255,255,0.75); margin-top: 1.5rem; max-width: 28rem; }
.legend { margin-top: 2.5rem; padding: 1.5rem; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.legend li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; padding: 0.4rem 0; }
.legend .dot { width: 8px; height: 8px; border-radius: 50%; }

.booking-form { padding: 2rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); }
@media (min-width: 768px) { .booking-form { padding: 2.5rem; } }
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.field input, .field select {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 0.75rem 1rem; color: white; font-size: 0.9rem; transition: all .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(212,168,87,0.2);
}
.field input::placeholder { color: rgba(255,255,255,0.4); }
.field select option { color: black; background: white; }
.form-error { display: none; margin-top: 1rem; padding: 0.6rem 1rem; border-radius: 10px;
  border: 1px solid rgba(244, 114, 114, 0.4); background: rgba(244, 114, 114, 0.1); color: #fecaca; font-size: 0.85rem; }
.form-error.show { display: block; }
.form-submit { margin-top: 2rem; width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }

/* ==================== LOCATION ==================== */
.location-section { background: var(--muted); }
.location-grid { display: grid; gap: 2rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1.5fr 1fr; } }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-luxe); }
.map-wrap iframe { width: 100%; height: 480px; border: 0; display: block; }
.location-info { padding: 2rem; border-radius: 16px; background: var(--navy-deep); color: white;
  display: flex; flex-direction: column; justify-content: space-between; }
.location-info .addr-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.location-info .addr { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.75rem; }
.near-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.near-list li { display: flex; gap: 1rem; align-items: flex-start; }
.near-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: var(--gold); }
.near-list .lbl { font-size: 0.9rem; font-weight: 500; }
.near-list .dist { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.map-cta { margin-top: 2rem; display: inline-flex; justify-content: center;
  border: 1px solid rgba(212,168,87,0.4); padding: 0.75rem 1.5rem; border-radius: 999px;
  color: var(--gold); font-size: 0.875rem; font-weight: 500; transition: all .2s; }
.map-cta:hover { background: var(--gold); color: var(--navy-deep); }

/* ==================== TESTIMONIALS ==================== */
.testimonials { text-align: center; }
.review-wrap { position: relative; min-height: 280px; margin-top: 3.5rem; }
.review { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease, transform .5s ease;
  transform: translateY(20px); padding: 2.5rem; max-width: 56rem; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 16px; background: var(--card); box-shadow: var(--shadow-luxe); }
.review.active { opacity: 1; transform: translateY(0); }
.review .quote-icon { position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; color: var(--gold); }
.review-stars { display: flex; justify-content: center; gap: 0.25rem; color: var(--gold); margin-bottom: 1.5rem; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; }
@media (min-width: 768px) { .review p { font-size: 1.5rem; } }
.review footer { margin-top: 1.5rem; font-size: 0.875rem; }
.review footer .name { font-weight: 600; }
.review footer .role { color: var(--muted-foreground); }
.review-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot-btn { width: 8px; height: 6px; border-radius: 999px; background: var(--border); transition: all .3s; }
.dot-btn.active { width: 32px; background: var(--gold); }

/* ==================== CONTACT ==================== */
.contact-section { background: var(--muted); }
.contact-grid { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.contact-info .divider { width: 6rem; height: 1px; margin-top: 1.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); }
.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: center; padding: 1.25rem;
  border-radius: 12px; border: 1px solid var(--border); background: var(--card); transition: all .2s; }
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-luxe); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; background: var(--navy-deep); color: var(--gold); flex-shrink: 0; }
.contact-card .ic.gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy-deep); }
.contact-card .lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); }
.contact-card .val { font-weight: 500; color: var(--foreground); }

.contact-form { padding: 2rem; border-radius: 16px; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-luxe); }
.contact-form .field input,
.contact-form .field textarea {
  width: 100%; background: var(--background); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--foreground); transition: all .2s;
}
.contact-form .field label { color: var(--muted-foreground); }
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,87,0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ==================== FOOTER ==================== */
.footer { background: var(--navy-deep); color: white; }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 0 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-brand { grid-column: span 2; }
@media (max-width: 640px) { .footer-brand { grid-column: span 1; } }
.footer-brand img { height: 64px; width: auto; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1.25rem; max-width: 26rem; }
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); transition: all .2s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); }
.footer ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul li, .footer ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ==================== WHATSAPP FAB ==================== */
.fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy-deep);
  box-shadow: var(--shadow-gold); transition: transform .2s; }
.fab:hover { transform: scale(1.1); }
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(212,168,87,0.4); z-index: -1; animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }
.fab-badge { position: absolute; bottom: -2px; right: -2px; background: #25D366; border-radius: 50%; padding: 2px; color: white; display: flex; align-items: center; justify-content: center; }

@keyframes ping { 75%, 100% { transform: scale(1.5); opacity: 0; } }

/* ==================== ANIMATIONS ==================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==================== RESTAURANT PAGE ==================== */
.r-hero { position: relative; height: 55vh; min-height: 380px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.r-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.r-hero::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,33,61,0.7), rgba(20,33,61,0.5), rgba(20,33,61,0.8)); }
.r-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.r-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-top: 0.75rem; }
.r-hero p { color: rgba(255,255,255,0.8); margin-top: 1rem; max-width: 35rem; }

.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.menu-tab { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.25rem;
  border-radius: 999px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--border);
  background: var(--card); color: var(--foreground); transition: all .3s; }
.menu-tab:hover { border-color: rgba(212,168,87,0.5); color: var(--gold); }
.menu-tab.active { background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-deep); border-color: transparent; box-shadow: var(--shadow-gold); }

.menu-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.menu-item { padding: 1.5rem; border-radius: 16px; border: 1px solid var(--border); background: var(--card);
  display: flex; flex-direction: column; gap: 1rem; transition: all .3s; }
.menu-item:hover { border-color: rgba(212,168,87,0.3); box-shadow: 0 10px 40px -20px rgba(20,33,61,0.3); }
.menu-item.selected { border-color: var(--gold); background: rgba(212,168,87,0.05); box-shadow: var(--shadow-gold); }
.menu-item-head { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.menu-item h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-display); }
.tag-selected { font-size: 0.7rem; padding: 0.15rem 0.5rem; background: rgba(212,168,87,0.2);
  color: var(--gold); border-radius: 999px; font-weight: 500; }
.menu-item-media { width: 100%; }
.menu-item-media img { width: 100%; max-width: none; height: auto; border-radius: 12px; margin: 0.5rem 0; display: block; object-fit: cover; }
.menu-item .menu-item-head { display: block; text-align: center; }
.menu-item .desc { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.55; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.menu-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.menu-btn { padding: 0.55rem 1.1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; transition: all .2s;
  background: linear-gradient(135deg, #10b981, #059669); color: white; }
.menu-btn:hover { transform: scale(1.05); background: linear-gradient(135deg, #059669, #047857); }
.menu-btn.remove { background: var(--navy-deep); color: white; }
.menu-btn.remove:hover { background: var(--navy); }

.order-bar { position: sticky; bottom: 0; z-index: 40; padding: 1rem 1.5rem;
  background: rgba(20,33,61,0.95); border-top: 1px solid rgba(212,168,87,0.2);
  backdrop-filter: blur(16px); display: none; }
.order-bar.show { display: block; }
.order-bar-inner { max-width: 1024px; margin: 0 auto; display: flex; flex-direction: column;
  gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .order-bar-inner { flex-direction: row; } }
.order-bar .count { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.order-bar .list { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.25rem; }

.r-info { padding: 2rem; border-radius: 16px; border: 1px solid rgba(212,168,87,0.2);
  background: var(--card); text-align: center; margin: 1.5rem auto; max-width: 720px; }
.r-info h2 { font-size: 1.5rem; margin-top: 0.75rem; }
.r-info p { color: var(--muted-foreground); font-size: 0.9rem; margin-top: 0.75rem; }
.r-info .meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1.5rem; }

/* ==================== ORDER FORM MODAL ==================== */
.order-modal { position: fixed; inset: 0; z-index: 50; display: none;
  align-items: center; justify-content: center; background: rgba(20,33,61,0.7);
  backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
.order-modal.open { display: flex; }
.order-modal-content { background: var(--card); border-radius: 16px; border: 1px solid rgba(212,168,87,0.2);
  padding: 2rem; max-width: 500px; width: 90%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 25px 60px -15px rgba(20,33,61,0.4); position: relative; animation: slideUp .3s ease; }
.order-modal-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
  background: rgba(212,168,87,0.1); color: var(--muted-foreground); transition: all .2s; }
.order-modal-close:hover { background: rgba(212,168,87,0.2); color: var(--gold); }

.order-modal h2 { font-size: 1.5rem; margin-bottom: 1.5rem; font-family: var(--font-display); }

#order-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.form-group input { padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.05); color: var(--foreground); font-size: 0.95rem;
  transition: all .2s; }
.form-group input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,168,87,0.1); }
.form-group input::placeholder { color: var(--muted-foreground); }

.form-error { padding: 0.75rem 1rem; border-radius: 8px; background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3); color: #ef4444; font-size: 0.875rem; display: none; }
.form-error.show { display: block; }

.order-summary { padding: 1rem; border-radius: 8px; background: rgba(212,168,87,0.05);
  border: 1px solid rgba(212,168,87,0.2); }
.order-summary p { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.order-summary ul { list-style: none; padding: 0; margin: 0; }
.order-summary li { font-size: 0.85rem; color: var(--muted-foreground); padding: 0.25rem 0; }

@media (max-width: 640px) {
  .order-modal-content { width: 95%; padding: 1.5rem; }
  .order-modal-content h2 { font-size: 1.25rem; }
}

#order-btn { background: linear-gradient(135deg, #10b981, #059669) !important; color: white !important; }
#order-btn:hover { background: linear-gradient(135deg, #059669, #047857) !important; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
