:root {
  --magenta: #E4007C;
  --gold: #FFC95B;
  --orange: #F98F21;
  --green: #03CB81;
  --teal: #25BCC0;
  --navy: #234C91;
  --ink: #14111c;
  --cream: #fff8ee;
  --glass: rgba(12, 10, 22, 0.62);
  --glass-border: rgba(255, 201, 91, 0.38);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--cream);
  background: #120e1a;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* Full-viewport slideshow */
.slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(228, 0, 124, 0.35), transparent 55%),
    radial-gradient(900px 500px at 90% 80%, rgba(3, 203, 129, 0.28), transparent 50%),
    linear-gradient(135deg, #234C91, #E4007C 55%, #F98F21);
  overflow: hidden;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.5s ease;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.slideshow .slide.is-active { opacity: 1; }
.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 22, 0.45) 0%, rgba(10, 8, 22, 0.58) 40%, rgba(10, 8, 22, 0.82) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(8, 6, 18, 0.45) 100%);
  pointer-events: none;
}

@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Papel picado */
.papel {
  position: relative;
  z-index: 4;
  height: 42px;
  background-repeat: repeat-x;
  background-size: 210px 42px;
 filter: drop-shadow(0 6px 10px rgba(0,0,0,.28));
}
.papel.bottom {
  transform: scaleY(-1);
  margin-top: auto;
}

.page {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(920px, calc(100% - 32px));
  margin: 18px auto 32px;
  flex: 1;
  display: flex;
  align-items: center;
}

.card {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 36px 36px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(228, 0, 124, 0.35);
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 201, 91, 0.8);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 201, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 91, 0); }
}

.logo-wrap {
  position: relative;
  margin: 22px auto 8px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 180deg, var(--magenta), var(--gold), var(--orange), var(--green), var(--teal), var(--navy), var(--magenta));
  box-shadow: 0 12px 40px rgba(228, 0, 124, 0.28);
}
.logo-wrap > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
}
.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--navy);
  display: none;
}
.logo-wrap.has-logo img { display: block; }
.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.06em;
}
.logo-wrap.has-logo .logo-fallback { display: none; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 10px 0 0;
  font-weight: 600;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.1;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}

.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--gold);
  margin: 10px 0 0;
}

.welcome {
  max-width: 42em;
  margin: 18px auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 248, 238, 0.92);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.btn-magenta { background: var(--magenta); color: #fff; }
.btn-gold { background: var(--gold); color: #1a1208; }
.btn-orange { background: var(--orange); color: #1a1208; }
.btn-green { background: var(--green); color: #082016; }
.btn-teal { background: var(--teal); color: #062022; }
.btn-navy { background: var(--navy); color: #fff; }

.meta {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.95rem;
  color: rgba(255, 248, 238, 0.88);
}
.meta a { color: var(--gold); text-underline-offset: 3px; }
.hours { color: var(--green); font-weight: 600; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.site-foot {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 8px 16px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.7);
}
.site-foot a { color: var(--gold); }

/* Catering extras */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 22px 0 8px;
  text-align: left;
}
.tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 201, 91, 0.2);
  border-radius: 16px;
  padding: 16px;
}
.tile h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.tile p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: rgba(255,248,238,.88); }

@media (max-width: 640px) {
  .card { padding: 20px 16px 18px; border-radius: 22px; }
  .logo-wrap { width: 104px; height: 104px; margin: 16px auto 4px; }
  .btn { width: 100%; }
  .wrap { width: min(920px, calc(100% - 16px)); margin: 8px auto 16px; }
  .welcome { font-size: 0.98rem; margin-top: 12px; }
  .actions { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .slideshow .slide { transform: none; }
}
