/* ========== TOKENS ========== */
:root {
  --color-bg: #050505;
  --color-bg-elev: #0d0d0d;
  --color-bg-card: #111111;
  --color-line: rgba(212, 175, 55, 0.18);
  --color-line-soft: rgba(255, 255, 255, 0.08);
  --color-gold: #d4af37;
  --color-gold-bright: #f1c84b;
  --color-gold-deep: #b08d2a;
  --color-text: #f4f1ea;
  --color-text-dim: #b8b3a8;
  --color-text-muted: #7d7a72;

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.8);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== BOOT ANIMATION ========== */
.boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.boot.is-done { pointer-events: none; }

.boot__panel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  z-index: 2;
}
.boot__panel--left {
  left: 0;
  transform-origin: left center;
  animation: panelLeft 2.2s var(--ease) forwards;
  border-right: 1px solid var(--color-line);
}
.boot__panel--right {
  right: 0;
  transform-origin: right center;
  animation: panelRight 2.2s var(--ease) forwards;
  border-left: 1px solid var(--color-line);
}

@keyframes panelLeft {
  0%   { transform: scaleX(1); }
  55%  { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
@keyframes panelRight {
  0%   { transform: scaleX(1); }
  55%  { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.boot__center {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: bootFade 2.2s var(--ease) forwards;
}
@keyframes bootFade {
  0%   { opacity: 0; transform: scale(0.96); }
  20%  { opacity: 1; transform: scale(1); }
  70%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}

.boot__mark {
  width: 88px; height: 88px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
  animation: markPulse 1.6s ease-in-out infinite;
}
@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.35); transform: scale(1); }
  50%      { box-shadow: 0 0 70px rgba(212, 175, 55, 0.6); transform: scale(1.04); }
}

.boot__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}
.boot__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold), var(--color-gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.boot__tagline {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}

.boot__line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 1.5rem auto 0;
  animation: lineGrow 1.4s var(--ease) 0.3s forwards;
}
@keyframes lineGrow {
  to { width: 220px; }
}

/* Body hidden until boot starts opening */
body.is-booting { overflow: hidden; }
body.is-booting .nav,
body.is-booting main,
body.is-booting .footer,
body.is-booting .float-wa { opacity: 0; }

/* Once boot is done, hide it completely */
.boot.is-done { display: none; }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--color-gold-bright); }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85), transparent);
  backdrop-filter: blur(0);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom-color: var(--color-line);
}

.nav__inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav__brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: var(--shadow-gold);
}
.nav__brand-text em { color: var(--color-gold); font-style: normal; font-weight: 400; }

.nav__links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.nav__links a { position: relative; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--color-gold);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--color-gold); transition: transform 0.3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__cta {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 1rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255, 255, 255, 0.015) 40px 80px),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.6), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  color: var(--color-gold);
  letter-spacing: 0.4em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 50%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-dim);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  color: #0a0a0a;
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #0a0a0a;
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--lg { padding: 1.15rem 2.4rem; font-size: 0.9rem; }

/* ========== SECTION HEAD ========== */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head__eyebrow {
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}
.section-head__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 1rem auto 0;
}

/* ========== ABOUT ========== */
.about { padding: 8rem 0; background: var(--color-bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text .lead {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.about__text p { color: var(--color-text-dim); margin-bottom: 1.5rem; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-line);
}
.about__stats > div { display: flex; flex-direction: column; gap: 0.4rem; }
.about__stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 600;
}
.about__stats span { font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

.about__visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.02)),
    var(--color-bg-card);
  border: 1px solid var(--color-line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about__visual::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid var(--color-line-soft);
  pointer-events: none;
}
.about__visual-inner {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

/* ========== EVENTS ========== */
.events {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elev) 100%);
}
.events__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-line-soft);
  border-left: 2px solid var(--color-gold);
  transition: all 0.3s var(--ease);
}
.event:hover {
  border-left-color: var(--color-gold-bright);
  background: linear-gradient(to right, rgba(212, 175, 55, 0.04), var(--color-bg-card));
  transform: translateX(4px);
}
.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--color-line);
}
.event__day {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}
.event__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}
.event__month {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--color-text-dim);
}
.event__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.event__body p { color: var(--color-text-dim); font-size: 0.95rem; margin-bottom: 0.3rem; }
.event__body p:last-child { margin-bottom: 0; }
.event__meta { font-size: 0.8rem; color: var(--color-text-muted); }
.event__cta {
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.event__cta:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

/* ========== GALLERY ========== */
.gallery { padding: 8rem 0; background: var(--color-bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
.gallery__item {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.02)),
    var(--color-bg-card);
  border: 1px solid var(--color-line-soft);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.gallery__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}
.gallery__item span {
  position: relative;
  z-index: 1;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.gallery__item:hover { transform: scale(0.98); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ========== MENU ========== */
.menu {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elev) 100%);
}
.menu__promo {
  text-align: center;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--color-gold);
  border-radius: 2px;
}
.menu__promo-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--color-gold);
  color: #0a0a0a;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.menu__promo p { color: var(--color-text); font-size: 1.1rem; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.menu__col h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-gold);
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--color-line-soft);
  gap: 1rem;
}
.menu__list li span:first-child { color: var(--color-text); }
.menu__list li span:last-child {
  color: var(--color-gold);
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.menu__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ========== VISIT ========== */
.visit { padding: 8rem 0; background: var(--color-bg); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.visit__info { display: flex; flex-direction: column; gap: 1rem; }
.visit__info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.visit__info h3:first-child { margin-top: 0; }
.visit__info p { color: var(--color-text-dim); line-height: 1.8; }
.visit__info a { color: var(--color-text); border-bottom: 1px solid var(--color-line); }
.visit__info a:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

.visit__hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-text-dim);
}
.visit__hours li span:first-child { color: var(--color-text); }

.visit__map {
  min-height: 400px;
  border: 1px solid var(--color-line);
  filter: grayscale(0.4) contrast(1.1);
}

/* ========== RESERVE ========== */
.reserve {
  padding: 8rem 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12), transparent 60%),
    var(--color-bg);
}
.reserve__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border: 1px solid var(--color-line);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), transparent);
  position: relative;
}
.reserve__inner::before,
.reserve__inner::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-gold);
}
.reserve__inner::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.reserve__inner::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.reserve__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1rem 0 1.5rem;
}
.reserve__sub {
  font-size: 1.1rem;
  color: var(--color-text-dim);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.reserve__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.reserve__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  background: #030303;
  border-top: 1px solid var(--color-line);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}
.footer__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--color-gold);
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 3px;
}
.footer__brand em { color: var(--color-gold); font-style: normal; font-weight: 400; }

.footer__social { display: flex; gap: 1.5rem; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-dim); }
.footer__copy { font-size: 0.78rem; color: var(--color-text-muted); width: 100%; text-align: center; margin-top: 1rem; }

/* ========== FLOATING WHATSAPP ========== */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
  animation: pulse 2s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); color: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__visual { aspect-ratio: 16/10; max-height: 350px; }

  .menu__grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 300px; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  .hero__cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .btn { width: 100%; }

  .event {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .event__cta { justify-self: center; }

  .about__stats { grid-template-columns: 1fr; gap: 1rem; text-align: center; }

  .float-wa { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
}

/* ========== A11Y ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

::selection { background: var(--color-gold); color: #0a0a0a; }
