/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #4A1018;
  color: #F8EEE0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ===== CONFETTI ===== */
.confetti-wrap {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.confetto {
  position: absolute;
  top: -20px;
  width: 10px; height: 14px;
  border-radius: 2px;
  opacity: 0.85;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(74, 16, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 134, 42, 0.4);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 46px; width: auto; display: block; object-fit: contain; }
.footer-logo { height: 54px; }
.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.75rem;
  background: linear-gradient(90deg, #EC4899, #F97316, #EAB308);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav { display: flex; gap: 1.5rem; }
nav a {
  font-size: 0.9rem; font-weight: 600;
  color: #E8D0A8;
  transition: color 0.2s;
}
nav a:hover { color: #EC4899; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, #8B1A1A, #EC4899, #F97316, #EAB308, #84CC16, #8B1A1A);
  background-size: 300% 100%;
  animation: gradient-shift 6s linear infinite;
  overflow: hidden;
  height: 40px; display: flex; align-items: center;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.ticker-track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-weight: 700; font-size: 0.85rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track span { padding-right: 3rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  min-height: calc(100dvh - 104px);
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  padding: 0 1.5rem calc(clamp(100px, 14vh, 160px) + 32px);
  overflow: hidden;
  background: #4A1018;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74,16,24,0.1) 0%,
    rgba(74,16,24,0.05) 30%,
    rgba(74,16,24,0.5) 65%,
    rgba(74,16,24,0.88) 100%
  );
  z-index: 1;
}
/* Balcony railing — hidden for now */
.hero-frame-balcony { display: none; }
/* Side posts — in front of balcony, behind top beam */
.hero-frame-sides {
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  object-fit: fill;
  pointer-events: none;
  z-index: 4;
}
/* Top beam — in front of side posts at the top corners */
.hero-frame-top {
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: clamp(70px, 9vh, 110px);
  object-fit: fill;
  pointer-events: none;
  z-index: 5;
}
/* Bottom beam — top beam rotated 180°, in front of side posts */
.hero-frame-bottom {
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: clamp(70px, 9vh, 110px);
  object-fit: fill;
  pointer-events: none;
  z-index: 5;
  transform: rotate(180deg);
}
.hero-inner {
  position: relative;
  z-index: 6;
  max-width: 560px;
  width: 100%;
}
.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 0 40px rgba(236,72,153,0.7), 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 0.85rem;
}
.gradient-text {
  background: linear-gradient(90deg, #EC4899, #F97316, #EAB308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: none;
  padding-right: 0.08em;
}
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #E8D0A8;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, #EC4899, #F97316);
  color: #fff;
  box-shadow: 0 4px 20px rgba(236,72,153,0.45);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(236,72,153,0.65); }
.btn-outline {
  border: 2px solid #EC4899;
  color: #EC4899;
  background: transparent;
}
.btn-outline:hover { background: rgba(236,72,153,0.12); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1.5rem; }
.section-dark { background: rgba(255,255,255,0.03); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3rem;
  text-align: center;
  color: #fff;
}
.section-title span { margin-left: 0.4rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.about-text p {
  color: #D4B898; line-height: 1.8;
  margin-bottom: 1rem; font-size: 1.05rem;
}
.about-text strong { color: #F9A8D4; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-card {
  background: linear-gradient(135deg, rgba(100,25,10,0.55), rgba(196,134,42,0.18));
  border: 1px solid rgba(196,134,42,0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196,134,42,0.25);
}
.stat-num {
  display: block;
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #EC4899, #EAB308);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: #D4B898; margin-top: 0.3rem; display: block; }

/* ===== ASSORTIMENT LIST ===== */
.assort-list { display: flex; flex-direction: column; }
.assort-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 2rem;
  border-left: 3px solid var(--accent);
  background: transparent;
  transition: background 0.25s, transform 0.2s;
  cursor: default;
}
.assort-item + .assort-item { border-top: 1px solid rgba(196,134,42,0.15); }
.assort-item:hover {
  background: rgba(255,255,255,0.035);
  transform: translateX(5px);
}
.assort-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  transition: border-color 0.25s, filter 0.25s;
}
.assort-item:hover .assort-icon {
  border-color: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
}
.assort-body h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem; }
.assort-body p { font-size: 0.92rem; color: #C8A882; line-height: 1.65; }
.assort-tag {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.assort-item:hover .assort-tag { opacity: 1; }

/* ===== VIDEO ===== */
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgba(196,134,42,0.3);
  box-shadow: 0 0 60px rgba(100,20,20,0.45);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* ===== HOURS ===== */
.hours-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.hours-card {
  background: linear-gradient(135deg, rgba(100,30,10,0.5), rgba(140,80,20,0.2));
  border: 1px solid rgba(196,134,42,0.35);
  border-radius: 1.5rem; padding: 2rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.75rem 0.5rem; color: #E8D0A8; border-bottom: 1px solid rgba(196,134,42,0.12); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { color: #F87171; }
.hours-note { display: flex; flex-direction: column; gap: 1.5rem; }
.hours-note p { color: #D4B898; line-height: 1.8; font-size: 1.05rem; }
.hours-note strong { color: #F9A8D4; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; color: #fff; margin-bottom: 0.3rem; font-size: 0.9rem; letter-spacing: 0.05em; }
.contact-item p { color: #D4B898; line-height: 1.7; }
.contact-item a { color: #EC4899; transition: color 0.2s; }
.contact-item a:hover { color: #F97316; }
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-btn {
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  transition: transform 0.15s, opacity 0.15s;
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.fb { background: #1877F2; color: #fff; }
.social-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.social-btn.yt { background: #FF0000; color: #fff; }
.map-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem; overflow: hidden;
}
.map-inner {
  height: 280px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  text-align: center; padding: 2rem;
}
.map-inner p:first-child { font-size: 3rem; }
.map-inner strong { color: #fff; font-size: 1.05rem; }
.map-inner p:nth-child(3) { color: #D4B898; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(196,134,42,0.25);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-inner .logo { font-size: 1.5rem; }
.footer-inner p { color: #9E7B5A; font-size: 0.9rem; }
.footer-copy { font-size: 0.8rem !important; margin-top: 0.5rem; }
.footer-privacy-link { color: #9E7B5A; text-decoration: underline; }
.footer-privacy-link:hover { color: #EC4899; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(196,134,42,0.5); }
.faq-q {
  padding: 1.1rem 1.5rem;
  font-weight: 700; font-size: 1rem;
  color: #fff; cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: #EC4899; font-size: 1.4rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.1rem; color: #D4B898; line-height: 1.75; font-size: 0.95rem; margin: 0; }
address { font-style: normal; }

/* ===== BUNTING FLAGS ===== */
.bunting {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 0.5rem 0 0;
  background: transparent;
  gap: 0;
}
.bunting::before {
  content: '';
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196,134,42,0.5), transparent);
}
.bunting-flag {
  width: 28px;
  height: 42px;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  background: url('images/rggbanner.jpg') center / cover no-repeat,
              linear-gradient(180deg, #E63946 0% 33.4%, #EAB308 33.4% 66.7%, #2DC653 66.7% 100%);
  margin: 0 3px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}

/* ===== HOURS CARNAVAL NOTE ===== */
.hours-carnaval-note {
  display: flex; gap: 0.65rem; align-items: flex-start;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(196,134,42,0.18);
  font-size: 0.88rem; color: #D4B898; line-height: 1.65;
}
.hours-carnaval-note span { flex-shrink: 0; margin-top: 0.05rem; }
.hours-carnaval-note strong { color: #F9A8D4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hero-video { display: none; }
  .hero-frame-sides,
  .hero-frame-top,
  .hero-frame-bottom,
  .hero-frame-balcony { display: none; }
  .hero {
    align-items: center;
    padding: 0 1.5rem 2rem;
  }
  .about-grid, .hours-wrap, .contact-grid { grid-template-columns: 1fr; }
  .assort-item { grid-template-columns: 48px 1fr; }
  .assort-tag { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .assort-item { grid-template-columns: 1fr; padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
}