/* ============================================================
   FLAMINGO — Club / Disco · cinematic AVA-style
   Dark, minimal, big type, flamingo-pink accent
   ============================================================ */

:root {
  --bg:       #08080a;
  --bg-2:     #0e0e12;
  --surface:  #131318;
  --surface-2:#1a1a21;
  --line:     rgba(255,255,255,0.10);
  --line-2:   rgba(255,255,255,0.20);

  --text:     #f6f4f2;
  --muted:    #a6a3ad;
  --muted-2:  #6f6c77;

  --pink:     #ff2e7e;   /* flamingo pink */
  --pink-2:   #ff5fa0;
  --pink-soft:rgba(255,46,126,0.14);
  --violet:   #7b3cff;
  --gold:     #e3b35e;
  --gold-soft:rgba(227,179,94,0.14);

  --maxw:     1080px;
  --gutter:   clamp(20px, 5vw, 64px);
  --radius:   5px;
  --radius-lg:6px;

  --display:  "Syne", "Inter", system-ui, sans-serif;
  --sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { /* subtle film grain */
  content:""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
::selection { background: var(--pink); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 0.98; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink); display: inline-block;
}
.display-1 { font-size: clamp(2.4rem, 11.5vw, 4rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; max-width: 100%; }
.h-xl { font-size: clamp(2.4rem, 6vw, 5.2rem); text-transform: uppercase; }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.6rem); text-transform: uppercase; }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.55; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.pad { padding-block: clamp(70px, 11vw, 160px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 22px; border-radius: 5px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-2); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 13px 26px; font-size: 0.88rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(8,8,10,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 0; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; white-space: nowrap; line-height: 1; }
.site-header .brand { font-size: 0 !important; }
.brand .mark { color: var(--pink); font-size: 1.2em; line-height: 0; transform: translateY(2px); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 11px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: color .2s var(--ease); white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; border: 1px solid var(--line-2); border-radius: 100px; padding: 3px; }
.lang-switch button { background: none; border: none; color: var(--muted); font-size: 0.76rem; font-weight: 700; padding: 5px 10px; border-radius: 100px; letter-spacing: 0.06em; transition: all .2s var(--ease); }
.lang-switch button.active { background: var(--text); color: var(--bg); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 20px; height: 2px; background: var(--text); position: relative; }
.nav-toggle span::before { position:absolute; top:-6px; }
.nav-toggle span::after { position:absolute; top:6px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: grid; align-items: center; position: relative; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(120% 90% at 70% 10%, rgba(255,46,126,0.30), transparent 55%),
  radial-gradient(100% 80% at 10% 100%, rgba(227,179,94,0.28), transparent 55%),
  linear-gradient(180deg, #0a0a0d, #08080a);
}
.hero-media::after { /* faux photo texture */
  content:""; position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 26px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 70%, transparent);
}
.hero-logo {
  position: absolute; inset: 0; z-index: -1;
  background: url('img/logo-mark.png') center 48% / clamp(280px, 42vw, 540px) no-repeat;
  opacity: 0.10;
  pointer-events: none;
  filter: blur(0.5px);
}
.hero-vignette { position:absolute; inset:0; z-index:-1; background: radial-gradient(120% 120% at 50% 30%, transparent 40%, rgba(0,0,0,0.65) 100%); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-inner { text-align: center; padding-block: 120px 60px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin: 0 auto; }
.hero .tagline { font-family: var(--display); font-weight: 500; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--text); margin-top: 24px; letter-spacing: 0.01em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.hero-photo-note { position: absolute; bottom: 84px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--pink), transparent); animation: drop 2s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding-block: 22px; overflow: hidden; white-space: nowrap; background: var(--bg-2); }
.marquee .track { display: inline-flex; gap: 40px; animation: scroll 28s linear infinite; will-change: transform; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 3.6vw, 2.8rem); letter-spacing: 0.02em; color: var(--text); }
.marquee span.o { color: transparent; -webkit-text-stroke: 1px var(--muted-2); }
.marquee .star { color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 66px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Media placeholder ---------- */
.media {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(90% 80% at 75% 15%, rgba(255,46,126,0.30), transparent 60%),
    radial-gradient(80% 80% at 10% 100%, rgba(227,179,94,0.28), transparent 55%),
    linear-gradient(180deg, #15151b, #0d0d11);
  display: flex; align-items: flex-end; min-height: 280px;
}
.media::before { content:""; position:absolute; inset:0; background-image: repeating-linear-gradient(125deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 22px); }
.media .cap { position: relative; z-index:1; padding: 16px 18px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); background: linear-gradient(transparent, rgba(0,0,0,0.7)); width: 100%; }
.media.tall { min-height: 460px; }

/* ---------- Nights / events ---------- */
.nights { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.night {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55)), radial-gradient(100% 70% at 70% 0%, rgba(255,46,126,0.28), transparent 60%), var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.night:hover { transform: translateY(-5px); border-color: var(--pink); }
.night .day { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold); }
.night h3 { font-size: 1.9rem; text-transform: uppercase; margin: 8px 0 8px; }
.night p { color: var(--muted); font-size: 0.95rem; }
.night .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.night .tags span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 12px; color: var(--muted); }

/* ---------- Corporate split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split.rev .split-media { order: -1; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; margin-top: 26px; }
.feature { padding: 16px 0; border-top: 1px solid var(--line); }
.feature .k { font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--text); }
.feature .k span { color: var(--pink); }
.feature .v { font-size: 0.86rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.ticks { margin-top: 22px; }
.ticks li { display:flex; gap: 12px; align-items:flex-start; padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.ticks li:last-child { border-bottom: none; }
.ticks li::before { content:""; flex:none; margin-top: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft); }
.ticks li b { color: var(--text); font-weight: 600; }

/* corporate band */
.band { position: relative; overflow: hidden; }
.band::before { content:""; position:absolute; inset:0; z-index:-1; background:
  radial-gradient(80% 120% at 85% 10%, rgba(255,46,126,0.16), transparent 55%),
  radial-gradient(70% 100% at 0% 100%, rgba(227,179,94,0.16), transparent 55%),
  var(--bg-2); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; grid-auto-rows: 180px; grid-auto-flow: dense; }
.gallery .media { min-height: 0; height: 100%; border-radius: 5px; }
.gallery .w2 { grid-column: span 2; }
.gallery .h2 { grid-row: span 2; }

/* ---------- Form ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.74rem; font-weight: 600; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 5px; padding: 13px 15px;
  color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a6a3ad' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:42px; }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 12px; }
.form-note.err { color: #ff6b6b; }
.form-note.ok { color: #4fd07f; }

/* ---------- Visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: start; }
.info-list li { display:flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border:none; }
.info-list .ic { flex:none; width: 42px; height: 42px; border-radius: 6px; background: var(--pink-soft); color: var(--pink); display:flex; align-items:center; justify-content:center; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.info-list .val { color: var(--text); margin-top: 2px; }
.info-list a.val:hover { color: var(--pink); }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { display:block; width:100%; height: 360px; border:0; filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.92); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 70px 34px; }
.footer-top { display:flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; align-items: flex-start; }
.footer-brand .brand { font-size: 2.4rem; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 34ch; }
.socials { display:flex; gap: 12px; flex-wrap: wrap; }
.socials a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); display:flex; align-items:center; justify-content:center; color: var(--text); transition: all .2s var(--ease); }
.socials a:hover { background: var(--pink); border-color: var(--pink); color:#fff; transform: translateY(-2px); }
.socials a svg { width: 19px; height: 19px; }
.footer-cols { display:flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-family: var(--sans); font-weight: 600; }
.footer-cols a, .footer-cols p { display:block; color: var(--muted); font-size: 0.95rem; padding: 5px 0; }
.footer-cols a:hover { color: var(--pink); }
.footer-bottom { display:flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.82rem; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nights { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .split, .visit-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display:flex; position:absolute; top:72px; left:0; right:0; flex-direction:column; align-items:stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 24px; gap: 4px;
  }
  .site-header.open .nav-links a { padding: 14px 16px; font-size: 0.95rem; }
  .nights, .form-row, .feature-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery .w2, .gallery .h2 { grid-column: auto; grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity:1; transform:none; transition:none; }
  .marquee .track { animation: none; }
}

/* ---------- Hero CTA stacked ---------- */
.hero-cta.stack { flex-direction: column; align-items: center; }
.hero-cta.stack .btn { min-width: 264px; justify-content: center; }

/* ---------- Corporate page hero clearance ---------- */
.page-hero { padding-top: clamp(120px, 16vw, 190px); }

/* ---------- Event cards (expandable) ---------- */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.ev:hover { transform: translateY(-4px); }
.ev[open] { border-color: var(--pink); transform: none; }
.ev > summary { list-style: none; cursor: pointer; display: block; }
.ev > summary::-webkit-details-marker { display: none; }
.ev .media { min-height: 196px; border: none; border-radius: 0; border-bottom: 1px solid var(--line); }
.ev .ev-body { padding: 22px 24px; }
.ev .ev-body h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 6px; }
.ev .ev-body .s { color: var(--muted); font-size: 0.95rem; }
.ev .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 9px; color: var(--pink); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.ev .more .ic { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--pink); display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; line-height: 1; transition: transform .25s var(--ease); }
.ev[open] .more .ic { transform: rotate(45deg); }
.ev-detail { padding: 4px 24px 26px; }
.ev-detail p { color: var(--muted); margin-bottom: 20px; }

/* ---------- Modal (popup form) ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 22px; background: rgba(4,4,6,0.74); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow-y: auto; }
.modal.open { display: flex; }
.modal-card { position: relative; width: 100%; max-width: 600px; margin: auto; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px); }
.modal-x { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--muted); font-size: 1.9rem; line-height: 1; width: 42px; height: 42px; border-radius: 5px; }
.modal-x:hover { color: var(--pink); }

@media (max-width: 1000px) { .events { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .events { grid-template-columns: 1fr; } }

/* ---------- Real photos ---------- */
.media.photo { background-size: cover; background-position: center; background-repeat: no-repeat; }
.media.photo::before { background: linear-gradient(180deg, rgba(8,8,10,0.10), rgba(8,8,10,0.60)); }

.night.photo { background-size: cover; background-position: center; }
.night.photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.18) 22%, rgba(8,8,10,0.88)); z-index: 0; }
.night.photo > * { position: relative; z-index: 1; }

/* brand mark (real logo emblem) */
.brand .mark-img { height: 26px; width: auto; display: inline-block; vertical-align: middle; flex: none; }

/* ---------- Header contact icons ---------- */
.nav-contact { display: flex; align-items: center; gap: 2px; }
.nav-contact a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 5px; color: var(--muted); transition: color .2s var(--ease), background .2s var(--ease); }
.nav-contact a:hover { color: var(--pink); background: var(--surface-2); }
.nav-contact a svg { width: 18px; height: 18px; }
@media (max-width: 400px) { .nav-contact { display: none; } }

/* ---------- Hero contact line ---------- */
.hero-contact { margin-top: 24px; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--muted); }
.hero-contact a { color: var(--text); }
.hero-contact a:hover { color: var(--pink); }

/* ---------- Amenity chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--bg); border: 1px solid var(--line-2); color: var(--muted); border-radius: 5px; padding: 8px 13px; font-size: 0.82rem; font-weight: 600; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.chip:hover { color: var(--text); }
.chip.active { background: var(--pink-soft); border-color: var(--pink); color: var(--text); }

/* ---------- App-style bottom navigation (mobile) ---------- */
.bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none; background: rgba(12,12,16,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--line); padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); }
.bottom-nav ul { display: flex; align-items: flex-end; justify-content: space-around; }
.bottom-nav li { flex: 1; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted-2); font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; padding: 6px 2px; text-align: center; }
.bottom-nav a svg { width: 22px; height: 22px; }
.bottom-nav a.active { color: var(--text); }
.bottom-nav a:active { color: var(--pink); }
.bottom-nav a.cta { color: var(--text); }
.bottom-nav a.cta .ic { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-top: -24px; margin-bottom: 2px; border-radius: 50%; background: var(--pink); color: #fff; box-shadow: 0 10px 26px rgba(255,46,126,0.45); border: 3px solid var(--bg); }
.bottom-nav a.cta .ic svg { width: 24px; height: 24px; }

/* event card photos */
.events .ev:nth-of-type(1) .ev-media { background-image: url('img/floor.jpg'); }
.events .ev:nth-of-type(2) .ev-media { background-image: url('img/flamingo.jpg'); }
.events .ev:nth-of-type(3) .ev-media { background-image: url('img/bar.jpg'); }
.events .ev:nth-of-type(4) .ev-media { background-image: url('img/floor2.jpg'); }
.events .ev:nth-of-type(5) .ev-media { background-image: url('img/flamingo-duo.jpg'); }
.events .ev:nth-of-type(6) .ev-media { background-image: url('img/bar2.jpg'); }

/* ---------- Anfrage-Chooser-Modal ---------- */
.chooser-title { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: 0.02em; text-align: center; }
.chooser-sub { color: var(--muted); text-align: center; margin: 10px 0 24px; font-size: 0.92rem; }
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chooser-card { display: block; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg); color: var(--text); transition: all .25s var(--ease); text-align: left; }
.chooser-card:hover { border-color: var(--pink); transform: translateY(-3px); background: var(--surface); box-shadow: 0 12px 32px rgba(255,46,126,0.18); }
.chooser-card .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--pink-soft); color: var(--pink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.chooser-card .ic svg { width: 24px; height: 24px; }
.chooser-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; margin-bottom: 6px; text-transform: none; line-height: 1.2; }
.chooser-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.chooser-card .arrow { display: inline-block; margin-top: 14px; color: var(--pink); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 600px) { .chooser-grid { grid-template-columns: 1fr; } }

/* show app bottom-nav, replace hamburger on mobile */
@media (max-width: 720px) {
  .nav-toggle { display: none; }
  .bottom-nav { display: block; }
  body { padding-bottom: 82px; }
}
