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

:root {
  --gold: #c9a227;
  --gold-light: #e2bb42;
  --gold-dark: #9b7a1a;
  --black: #0b0b0b;
  --dark: #111111;
  --dark-2: #181510;
  --dark-3: #1e1a10;
  --white: #ffffff;
  --cream: #f5f0e8;
  --text-muted: #9e9080;
  --border: rgba(201,162,39,0.2);
  --nav-h: 80px;
  --radius: 4px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px rgba(201,162,39,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
}
.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(11,11,11,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,162,39,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #0f0c06 50%, #0b0b0b 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 100px 24px 60px;
}
.hero-crown {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: crownFloat 3s ease-in-out infinite;
}
@keyframes crownFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(201,162,39,0.3)); }
  50% { filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(201,162,39,0.6)); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.hero-title-top {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(201,162,39,0.4);
}
.hero-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-title-loc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.15em;
  opacity: 0.8;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-diamond {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.8;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  opacity: 0.5;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  animation: scrollPulse 2.5s ease-in-out infinite;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }
.scroll-arrow { font-size: 1.2rem; }
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-ornament {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  opacity: 0.6;
  margin-bottom: 20px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-emblem {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dark-3), var(--dark));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(201,162,39,0.15), inset 0 0 40px rgba(201,162,39,0.05);
  overflow: hidden;
}
.about-emblem img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.about-badge {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
}
.about-badge.top-left { top: 30px; left: 0; }
.about-badge.bottom-right { bottom: 30px; right: 0; }

/* ========== MENU ========== */
.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-tab {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(201,162,39,0.2);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-tab:hover, .menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.menu-card {
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  transition: height 0.4s;
}
.menu-card:hover::before { height: 100%; }
.menu-card:hover {
  border-color: rgba(201,162,39,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,162,39,0.1);
}
.menu-card.hidden { display: none; }
.menu-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.menu-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.menu-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.menu-price {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.gallery-tall {
  grid-row: span 2;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201,162,39,0.05), transparent);
}
.gallery-icon { font-size: 2.5rem; opacity: 0.6; }
.gallery-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(11,11,11,0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ========== EVENTS ========== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.event-card {
  background: linear-gradient(135deg, rgba(201,162,39,0.05), rgba(11,11,11,0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(11,11,11,0.9));
}
.event-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.event-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.event-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.event-features {
  text-align: left;
  display: inline-block;
}
.event-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
}
.event-features li::before {
  content: '◆ ';
  color: var(--gold);
  font-size: 0.5rem;
}
.events-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.events-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0.7;
}
.events-cta .btn { margin: 0 8px; }

/* ========== CONTACT ========== */
.contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.contact-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.contact-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.contact-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-link { transition: color 0.3s; }
.contact-link:hover { color: var(--gold); }
.contact-action-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201,162,39,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option {
  background: var(--dark);
  color: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.map-wrap iframe { display: block; filter: grayscale(30%) brightness(0.8) contrast(1.1); }
.map-cta { text-align: center; padding: 20px; background: var(--dark-2); }

/* ========== FOOTER ========== */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
}
.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold) !important;
  opacity: 0.7;
  margin-top: 10px !important;
}
.footer-links h4, .footer-contact h4, .footer-social h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 10px; margin-bottom: 28px; }
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  transform: translateY(-3px);
}
.footer-hours p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-divider {
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  opacity: 0.4;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-sub { font-size: 0.75rem !important; opacity: 0.7; }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item.gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-item.gallery-tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 14px 32px; font-size: 0.8rem; width: 100%; }
  .nav-link::after { bottom: 8px; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .about-stats { gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-large,
  .gallery-item.gallery-tall { grid-column: span 1; grid-row: span 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-logo { width: 120px; height: 120px; }
  .events-cta .btn { display: block; margin: 8px auto; max-width: 260px; text-align: center; }
  .contact-action-buttons { flex-direction: column; }
  .contact-action-buttons .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; align-items: center; }
  .menu-tab { width: 100%; max-width: 280px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .about-emblem { width: 220px; height: 220px; }
}
