/* =========================================================
   Europa Cafe & BYOB — Modern nightlife theme
   Palette: near-black, warm charcoal, amber/gold, coral accent
   Fonts: Sora (display) + Inter (body)
   ========================================================= */

:root {
  --bg:        #0d0d12;   /* near-black base */
  --bg-2:      #14141b;   /* raised surface */
  --bg-3:      #1c1c26;   /* cards */
  --line:      rgba(255,255,255,0.10);
  --amber:     #f5a623;   /* warm gold — primary accent */
  --amber-2:   #ffbf4d;
  --coral:     #ff5a5f;   /* CTA / energy accent */
  --coral-2:   #ff7a4d;
  --wa:        #25d366;   /* WhatsApp green */
  --wa-2:      #1eb955;
  --text:      #f4f2ee;   /* warm white */
  --muted:     #a8a5b0;   /* soft grey */
  --muted-2:   #9a97a3;   /* WCAG AA on dark bg */

  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Sora', var(--sans);

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--amber); color: #1a1200; }

/* Visible keyboard focus for all interactive elements */
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 3px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 128px) 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow--accent { color: var(--amber); }

.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 22px;
}
.section__title em { color: var(--amber); font-style: normal; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 14px 26px; border: 1.5px solid transparent; border-radius: 999px;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--primary { background: linear-gradient(135deg, var(--coral), var(--coral-2)); color: #fff; box-shadow: 0 12px 30px rgba(255,90,95,0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,90,95,0.5); }
.btn--whatsapp { background: var(--wa); color: #052e14; }
.btn--whatsapp:hover { background: var(--wa-2); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,0.4); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; padding: 18px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s;
}
.nav.is-scrolled {
  background: rgba(13,13,18,0.85); backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4); padding: 11px 0; border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 44px; width: auto; display: block; }
.brand__mark { display: flex; align-items: center; gap: 11px; color: var(--amber); }
.brand__text { font-family: var(--display); font-size: 1.24rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.brand__text em { font-style: normal; color: var(--amber); font-weight: 600; font-size: 0.86em; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--text); position: relative; }
.nav__links a:not(.nav__cta) { color: var(--muted); }
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--amber); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--wa); color: #052e14; padding: 10px 20px; border-radius: 999px; font-weight: 600; }
.nav__cta:hover { background: var(--wa-2); transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 70; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center;
  text-align: center; color: var(--text); overflow: hidden; background: #000;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
/* Animated fallback shown until a real hero.mp4 is added (video with no source stays transparent) */
.hero__fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(245,166,35,0.22), transparent 55%),
    radial-gradient(120% 90% at 85% 90%, rgba(255,90,95,0.22), transparent 55%),
    linear-gradient(160deg, #17131f 0%, #0d0d12 55%, #1a1016 100%);
  display: grid; place-items: center;
}
.equalizer { display: flex; align-items: flex-end; gap: 7px; height: 220px; opacity: 0.5; }
.equalizer span {
  width: 10px; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--amber), var(--coral));
  animation: eq 1.4s ease-in-out infinite;
}
.equalizer span:nth-child(1){ height: 30%; animation-delay: -1.2s; }
.equalizer span:nth-child(2){ height: 55%; animation-delay: -0.9s; }
.equalizer span:nth-child(3){ height: 80%; animation-delay: -0.4s; }
.equalizer span:nth-child(4){ height: 45%; animation-delay: -0.7s; }
.equalizer span:nth-child(5){ height: 95%; animation-delay: -0.2s; }
.equalizer span:nth-child(6){ height: 60%; animation-delay: -1.0s; }
.equalizer span:nth-child(7){ height: 35%; animation-delay: -0.5s; }
.equalizer span:nth-child(8){ height: 75%; animation-delay: -0.1s; }
.equalizer span:nth-child(9){ height: 50%; animation-delay: -0.8s; }
.equalizer span:nth-child(10){ height: 90%; animation-delay: -0.3s; }
.equalizer span:nth-child(11){ height: 40%; animation-delay: -1.1s; }
.equalizer span:nth-child(12){ height: 70%; animation-delay: -0.6s; }
.equalizer span:nth-child(13){ height: 85%; animation-delay: -0.15s; }
.equalizer span:nth-child(14){ height: 45%; animation-delay: -0.95s; }
.equalizer span:nth-child(15){ height: 65%; animation-delay: -0.35s; }
@keyframes eq { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,13,18,0.55) 0%, rgba(13,13,18,0.35) 40%, rgba(13,13,18,0.9) 100%),
    radial-gradient(120% 80% at 50% 40%, transparent 40%, rgba(13,13,18,0.6) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 100px 0; max-width: 920px; }
.hero__eyebrow { color: var(--amber-2); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.82rem; font-weight: 600; margin-bottom: 22px; }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.9rem, 8.5vw, 6rem); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero__title em { font-style: normal; background: linear-gradient(120deg, var(--amber), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: rgba(244,242,238,0.86); max-width: 640px; margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 26px; font-size: 0.92rem; color: var(--muted); letter-spacing: 0.02em; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--text);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 24px; flex-wrap: wrap; }
.trust__item { text-align: center; flex: 1 1 150px; }
.trust__num { display: block; font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--amber); line-height: 1; }
.trust__label { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.trust__divider { width: 1px; align-self: stretch; background: var(--line); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; min-height: 480px; }
.about__img { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg-3); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main {
  inset: 0 20% 16% 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,166,35,0.18), transparent 55%),
    linear-gradient(135deg, #241a2e, #14141b);
  border: 1px solid var(--line);
}
.about__img--accent {
  width: 54%; height: 56%; bottom: 0; right: 0; border: 5px solid var(--bg);
  background:
    radial-gradient(circle at 60% 40%, rgba(255,90,95,0.2), transparent 55%),
    linear-gradient(135deg, #2a1622, #14141b);
}
.about__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: linear-gradient(135deg, var(--amber), var(--coral)); color: #1a1200;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.about__text p { margin-bottom: 18px; color: var(--muted); font-size: 1.05rem; }
.about__text strong { color: var(--amber); font-weight: 600; }
.about__stats { display: flex; gap: 28px; margin: 26px 0 30px; flex-wrap: wrap; }
.about__stat-num { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--text); line-height: 1; }
.about__stat-label { display: block; font-size: 0.82rem; color: var(--muted-2); margin-top: 6px; max-width: 120px; }

/* ============================================================
   BYOB
   ============================================================ */
.byob { background: var(--bg-2); position: relative; }
.byob__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.byob__lead { color: var(--muted); font-size: 1.1rem; }
.byob__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.byob__card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; text-align: center;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.byob__card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.5); box-shadow: var(--shadow-sm); }
.byob__icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.byob__card h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.byob__card p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg); }
.menu__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.menu__note { color: var(--muted); }
.menu__note strong { color: var(--text); }
.menu__note em { color: var(--muted-2); font-style: italic; font-size: 0.92em; }
.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); }
.menu__cat {
  font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--amber);
  margin: 28px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.menu__cat:first-child { margin-top: 0; }
.menu__row { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; }
.menu__name { font-size: 1.04rem; color: var(--text); font-weight: 400; }
.menu__dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.18); transform: translateY(-4px); }
.menu__price { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--muted); }
.menu__cta { display: flex; gap: 14px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }

/* ============================================================
   EVENTS / GALLERY
   ============================================================ */
.events { background: var(--bg-2); }
.videos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vcard {
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--bg-3); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.vcard--feature { grid-row: span 2; }
.vcard:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.5); box-shadow: var(--shadow); }
.vcard video {
  width: 100%; height: 100%; max-height: 620px; object-fit: cover; display: block; background: #000;
  aspect-ratio: 16 / 10;
}
.vcard--feature video { aspect-ratio: auto; height: calc(100% - 58px); }
.vcard figcaption {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 18px; font-size: 0.95rem; color: var(--muted);
}
.vcard__tag {
  background: linear-gradient(135deg, var(--amber), var(--coral)); color: #1a1200;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.review__stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.review blockquote { font-family: var(--display); font-size: 1.16rem; font-weight: 400; line-height: 1.5; margin-bottom: 16px; color: var(--text); }
.review figcaption { font-size: 0.84rem; letter-spacing: 0.04em; color: var(--muted-2); }
.reviews__note { text-align: center; margin-top: 28px; color: var(--muted-2); font-size: 0.88rem; font-style: italic; }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve { background: var(--bg-2); }
.reserve__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.reserve__intro > p { color: var(--muted); margin-bottom: 24px; }
.reserve__perks { margin-bottom: 28px; }
.reserve__perks li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text); }
.reserve__perks li::before { content: "✦"; position: absolute; left: 0; color: var(--amber); }
.reserve__contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.reserve__call { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--text); }
.reserve__call:hover { color: var(--amber); }

.reserve__form { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.field__opt { text-transform: none; letter-spacing: 0; color: var(--muted-2); font-size: 0.78rem; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,90,95,0.18); }
.field__error { color: var(--coral); font-size: 0.8rem; margin-top: 6px; min-height: 1em; }
.reserve__form .btn { margin-top: 6px; }
.reserve__disclaimer { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 14px; }

.reserve__success { margin-top: 18px; text-align: center; padding: 22px; background: rgba(37,211,102,0.08); border: 1px solid var(--wa); border-radius: var(--radius-sm); animation: pop .4s var(--ease); }
.reserve__success-mark { display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 12px; background: var(--wa); color: #052e14; border-radius: 50%; font-size: 1.4rem; }
.reserve__success a { color: var(--wa); font-weight: 600; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--bg); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 60px); align-items: stretch; }
.visit__block { margin-bottom: 24px; }
.visit__block h3 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.visit__block p, .visit__hours { color: var(--muted); font-size: 1.02rem; }
.visit__block a:hover { color: var(--amber); }
.visit__hours li { display: flex; justify-content: space-between; max-width: 320px; padding: 5px 0; border-bottom: 1px dotted var(--line); }
.visit__hours li span:last-child { color: var(--text); }
.visit__info .btn { margin-top: 8px; }
.visit__map { border-radius: var(--radius); min-height: 400px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: grayscale(0.25) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  text-align: center; padding: clamp(72px, 10vw, 130px) 0;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(245,166,35,0.16), transparent 55%),
    radial-gradient(90% 120% at 50% 100%, rgba(255,90,95,0.16), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.finalcta__inner { max-width: 680px; margin: 0 auto; }
.finalcta h2 { font-family: var(--display); font-size: clamp(2rem, 5.4vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.finalcta p { color: var(--muted); font-size: 1.14rem; margin-bottom: 30px; }
.finalcta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #08080c; color: var(--muted); border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 60px 24px 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__tag { font-size: 0.92rem; color: var(--muted-2); }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.95rem; transition: color .2s; }
.footer__links a:hover { color: var(--amber); }
.footer__meta p { font-size: 0.95rem; margin-bottom: 6px; }
.footer__meta a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.footer__social a { font-size: 0.85rem; letter-spacing: 0.03em; color: var(--amber); }
.footer__social a:hover { color: var(--amber-2); }
.footer__bar { border-top: 1px solid var(--line); }
.footer__bar p { text-align: center; font-size: 0.82rem; color: var(--muted-2); padding: 20px 0; }

.ig-link { color: var(--amber); font-weight: 600; border-bottom: 1px solid rgba(245,166,35,0.4); }
.ig-link:hover { color: var(--amber-2); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,0.65); }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.0); } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--bg-2); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 24px; padding: 40px; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5); border-left: 1px solid var(--line); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; }
  .nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about__grid, .reserve__grid, .visit__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 420px; max-width: 500px; }
  .byob__cards, .reviews__grid { grid-template-columns: 1fr; }
  .menu__cols { grid-template-columns: 1fr; gap: 0; }
  .videos__grid { grid-template-columns: 1fr; }
  .vcard--feature { grid-row: auto; }
  .vcard--feature video { aspect-ratio: 16 / 10; height: auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .trust__divider { display: none; }
  .trust__item { flex-basis: 44%; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .about__stats { gap: 18px; }
  .footer__bar { padding-bottom: 88px; } /* clear the floating WhatsApp button */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { display: none; }
}
