/* ==========================================================================
   VELVET ROPE VEGAS  -  design system
   Modern Las Vegas luxe: near-black canvas, warm gold, velvet crimson,
   live-host green. Editorial serif + clean sans. Motion with restraint.
   ========================================================================== */

:root {
  /* palette */
  --ink: #0a0a0c;
  --ink-1: #101015;
  --ink-2: #16161d;
  --ink-3: #1e1e27;
  --line: rgba(216,30,52, 0.16);
  --line-soft: rgba(244, 241, 234, 0.08);
  --red: #d81e34;
  --red-bright: #ff4257;
  --red-deep: #6e0f1c;
  --crimson: #b32f50;
  --crimson-deep: #5e1528;
  --bone: #f4f1ea;
  --bone-dim: #b8b3a8;
  --bone-faint: #7d7a72;
  --online: #34d27b;
  --online-glow: rgba(52, 210, 123, 0.55);

  /* type */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* spacing + radius */
  --container: 1240px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 18px 50px -20px rgba(216,30,52, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--crimson); color: var(--bone); }

/* gold scrollbar accents */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--red-deep); border-radius: 10px; border: 3px solid var(--ink); }

/* ----------------------------- typography ------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: 0.005em; color: var(--bone); }
.display { font-size: clamp(2.7rem, 7vw, 5.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
p { color: var(--bone-dim); }
strong { color: var(--bone); font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--red)); }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--red), transparent); }
.eyebrow.center::before { background: linear-gradient(90deg, transparent, var(--red)); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--bone-dim); max-width: 60ch; }
.gold { color: var(--red-bright); }
.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--red-bright); }

/* ----------------------------- layout ---------------------------------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.6rem, 8vw, 7rem) 0; position: relative; }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 0.9rem 0 0.7rem; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }

/* ----------------------------- buttons --------------------------------- */
.btn {
  --btn-bg: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); background: var(--btn-bg);
  border: 1px solid transparent; border-radius: 100px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.3s ease;
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--red-bright), var(--red));
  transform: translateY(100%); transition: transform 0.45s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn:hover::before { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border-color: var(--line); backdrop-filter: blur(6px);
}
.btn-ghost::before { background: rgba(216,30,52, 0.12); }
.btn-ghost:hover { color: var(--red-bright); border-color: var(--red); box-shadow: none; }
.btn-crimson { --btn-bg: var(--crimson); color: var(--bone); }
.btn-crimson::before { background: linear-gradient(120deg, #d23a60, var(--crimson)); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 0.82rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.68rem; letter-spacing: 0.14em; }

.btn .ico { width: 16px; height: 16px; }

/* link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); transition: gap 0.3s var(--ease), color 0.3s ease;
}
.arrow-link svg { width: 18px; transition: transform 0.3s var(--ease); }
.arrow-link:hover { color: var(--red-bright); gap: 0.85rem; }

/* ----------------------------- header ---------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center;
  padding: 1.1rem 0; transition: padding 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 0.6rem 0; background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.04em;
  line-height: 1; color: var(--bone);
}
.brand-name b { color: var(--red-bright); font-weight: 600; }
.brand-sub { display: block; font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--bone-faint); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.9vw, 1.85rem); }
.nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--bone-dim); position: relative; padding: 0.4rem 0; white-space: nowrap; transition: color 0.3s ease;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--red); transition: width 0.35s var(--ease); }
.nav a:hover { color: var(--bone); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--red-bright); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-presence { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--bone-dim); letter-spacing: 0.04em; white-space: nowrap; }
@media (max-width: 1240px) { .header-presence { display: none; } }

.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 10px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.5px; background: var(--bone); transform: translate(-50%, -50%); transition: 0.3s var(--ease); }
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .header-presence { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.4rem;
    background: rgba(8, 8, 10, 0.97); backdrop-filter: blur(14px);
    transform: translateY(-100%); transition: transform 0.5s var(--ease); z-index: 99;
  }
  body.menu-open .nav { display: flex; transform: translateY(0); }
  .nav a { font-size: 1.4rem; font-family: var(--font-display); text-transform: none; letter-spacing: 0.02em; }
}
@media (max-width: 600px) { .header-cta .btn { display: none; } .brand-sub { display: none; } .brand-name { font-size: 1.18rem; } }

/* ----------------------------- hero ------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 7rem 0 4rem; }
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media video, .hero-media img, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 80% 10%, transparent 30%, rgba(10,10,12,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.35) 35%, rgba(10,10,12,0.85) 100%);
}
.hero-grain { position: absolute; inset: 0; z-index: -2; opacity: 0.5; pointer-events: none; mix-blend-mode: overlay;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"); }
.hero-glow { position: absolute; z-index: -2; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; border-radius: 50%; filter: blur(90px); opacity: 0.45; pointer-events: none; }
.hero-glow.g1 { top: -10%; right: -8%; background: radial-gradient(circle, rgba(216,30,52,0.5), transparent 65%); animation: drift 16s ease-in-out infinite alternate; }
.hero-glow.g2 { bottom: -18%; left: -10%; background: radial-gradient(circle, rgba(179,47,80,0.42), transparent 65%); animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate(40px, -30px) scale(1.12); } }

.hero-inner { position: relative; z-index: 2; max-width: 56rem; }
.hero h1 { margin: 1.3rem 0; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(110%); animation: riseIn 0.95s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes riseIn { to { transform: translateY(0); } }
.hero .lede { animation: fadeUp 1s var(--ease) 0.4s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; animation: fadeUp 1s var(--ease) 0.55s both; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2.6rem; animation: fadeUp 1s var(--ease) 0.7s both; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--font-display); font-size: 1.9rem; color: var(--red-bright); line-height: 1; }
.hero-trust .t span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); margin-top: 0.35rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--bone-faint); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll .mouse { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; background: var(--red); border-radius: 3px; transform: translateX(-50%); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 8px); } }

/* live host strip in hero */
.hero-live { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.5rem 1rem 0.5rem 0.7rem; border: 1px solid var(--line); border-radius: 100px; background: rgba(10,10,12,0.45); backdrop-filter: blur(8px); font-size: 0.78rem; color: var(--bone-dim); animation: fadeUp 1s var(--ease) 0.3s both; }

/* ----------------------------- live dot -------------------------------- */
.dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--online); flex-shrink: 0; }
.dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--online); opacity: 0; animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(2.1); opacity: 0; } }
.dot.lg { width: 12px; height: 12px; }

/* ----------------------------- marquee --------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); padding: 1.1rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: scrollX 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 1.4rem; color: var(--bone-faint); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee-track span::after { content: "\2726"; color: var(--red-deep); font-size: 0.7rem; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ----------------------------- venue cards ----------------------------- */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .venue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .venue-grid { grid-template-columns: 1fr; } }

.venue-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-1); border: 1px solid var(--line-soft);
  isolation: isolate; transition: transform 0.5s var(--ease), border-color 0.5s ease, box-shadow 0.5s ease;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
}
.venue-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.venue-card .poster { position: absolute; inset: 0; z-index: -2; transition: transform 0.8s var(--ease); }
.venue-card:hover .poster { transform: scale(1.06); }
.venue-card .scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,10,0.05) 0%, rgba(8,8,10,0.35) 45%, rgba(8,8,10,0.94) 100%); }
.venue-card .card-top { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 0.6rem; }
.venue-card .card-body { padding: 1.3rem 1.4rem 1.5rem; }
.venue-card .resort { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.venue-card h3 { margin: 0.35rem 0 0.5rem; font-size: 1.7rem; }
.venue-card .vtag { font-size: 0.88rem; color: var(--bone-dim); margin-bottom: 1rem; min-height: 2.6em; }
.venue-card .meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.chip { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.65rem; border: 1px solid var(--line); border-radius: 100px; color: var(--bone-dim); background: rgba(255,255,255,0.02); }
.chip.gold { color: var(--red-bright); border-color: rgba(216,30,52,0.4); }
.badge-type { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.32rem 0.6rem; border-radius: 100px; background: rgba(10,10,12,0.6); backdrop-filter: blur(6px); color: var(--bone); border: 1px solid var(--line); }
.badge-host { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim); padding: 0.32rem 0.55rem 0.32rem 0.5rem; border-radius: 100px; background: rgba(10,10,12,0.55); backdrop-filter: blur(6px); border: 1px solid var(--line-soft); }
.venue-card .card-actions { display: flex; gap: 0.6rem; align-items: center; }
.venue-card .card-actions .btn { flex: 1; }

/* poster monogram */
.poster-mono { position: absolute; inset: 0; display: grid; place-items: center; }
.poster-mono span { font-family: var(--font-display); font-size: 8rem; font-weight: 600; color: rgba(255,255,255,0.12); }

/* ----------------------------- host card ------------------------------- */
.host-card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); text-align: center; position: relative; overflow: hidden;
}
.host-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.host-avatar { position: relative; width: 104px; height: 104px; margin: 0 auto 0.4rem; }
.host-avatar .ring { width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 30% 25%, var(--ink-3), var(--ink)); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.host-avatar .ring img { width: 100%; height: 100%; object-fit: cover; }
.host-avatar .mono { font-family: var(--font-display); font-size: 2.6rem; color: var(--red-bright); }
.host-avatar .status { position: absolute; bottom: 6px; right: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--online); border: 3px solid var(--ink-1); box-shadow: 0 0 0 0 var(--online-glow); animation: statusPulse 2.4s ease-out infinite; }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 0 var(--online-glow); } 70% { box-shadow: 0 0 0 10px rgba(52,210,123,0); } 100% { box-shadow: 0 0 0 0 rgba(52,210,123,0); } }
.host-role { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--red); margin-top: 1rem; }
.host-name { font-size: 2rem; margin: 0.3rem 0 0.2rem; }
.host-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-faint); }
.host-blurb { color: var(--bone-dim); margin: 1rem auto 1.4rem; max-width: 38ch; font-size: 0.96rem; }
.host-actions { display: grid; gap: 0.7rem; }
.host-available { display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 1.1rem; font-size: 0.74rem; color: var(--bone-dim); }

/* compact host row (per venue) */
.host-inline { display: flex; align-items: center; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-1); }
.host-inline .av { position: relative; width: 56px; height: 56px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, var(--ink-3), var(--ink)); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.host-inline .av .mono { font-family: var(--font-display); font-size: 1.5rem; color: var(--red-bright); }
.host-inline .av .status { position: absolute; bottom: 0; right: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--online); border: 2px solid var(--ink-1); }
.host-inline .info { flex: 1; min-width: 0; }
.host-inline .info b { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--bone); }
.host-inline .info span { font-size: 0.74rem; color: var(--bone-faint); }

/* ----------------------------- forms ----------------------------------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; margin-bottom: 0.9rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--bone);
  background: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--bone-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,30,52,0.14); outline: none; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a86a' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.72rem; color: var(--bone-faint); margin-top: 0.4rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 1.4rem; }
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease) both; }
.form-success .check { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(52,210,123,0.12); border: 1px solid var(--online); display: grid; place-items: center; }
.form-error { color: #ff8aa0; font-size: 0.8rem; margin-top: 0.5rem; display: none; }
.form-error.show { display: block; }

/* ----------------------------- modal / drawer -------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,4,6,0.78); backdrop-filter: blur(8px); animation: fadeUp 0.3s ease both; }
.modal-card { position: relative; width: min(100%, 460px); max-height: 92vh; overflow-y: auto; background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); animation: modalIn 0.45s var(--ease) both; box-shadow: var(--shadow); }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--bone-dim); display: grid; place-items: center; transition: 0.3s ease; }
.modal-close:hover { color: var(--bone); border-color: var(--red); transform: rotate(90deg); }
.modal-head { text-align: center; margin-bottom: 1.4rem; }

/* ----------------------------- share ----------------------------------- */
.share { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.share-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-faint); }
.share-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.02); color: var(--bone-dim); display: grid; place-items: center; transition: 0.3s var(--ease); }
.share-btn:hover { color: var(--red-bright); border-color: var(--red); transform: translateY(-3px); }
.share-btn svg { width: 17px; height: 17px; }
.copy-toast { position: fixed; bottom: 2rem; left: 50%; transform: translate(-50%, 30px); z-index: 300; background: var(--ink-3); border: 1px solid var(--red); color: var(--bone); padding: 0.8rem 1.4rem; border-radius: 100px; font-size: 0.82rem; opacity: 0; pointer-events: none; transition: 0.4s var(--ease); }
.copy-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ----------------------------- stats ----------------------------------- */
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat b { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--red-bright); line-height: 1; display: block; }
.stat span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-faint); margin-top: 0.5rem; display: block; }

/* ----------------------------- steps ----------------------------------- */
.step { position: relative; padding: 1.6rem; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--ink-1); overflow: hidden; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step .ico-wrap { width: 46px; height: 46px; border-radius: 12px; background: rgba(216,30,52,0.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--red-bright); margin-bottom: 1rem; }

/* ----------------------------- testimonials ---------------------------- */
.quote { padding: 1.8rem; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--ink-1); display: flex; flex-direction: column; gap: 1rem; }
.quote .stars { color: var(--red-bright); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--bone); line-height: 1.4; }
.quote .who { font-size: 0.78rem; color: var(--bone-faint); letter-spacing: 0.08em; }
.quote .who b { color: var(--red); }

/* ----------------------------- FAQ ------------------------------------- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--bone); padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-size: 1.25rem; transition: color 0.3s ease; }
.faq-q:hover { color: var(--red-bright); }
.faq-q .pm { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--red); transition: transform 0.35s var(--ease); }
.faq-q .pm::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .pm::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 1.3rem; color: var(--bone-dim); max-width: 70ch; }

/* ----------------------------- CTA band -------------------------------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(2.6rem, 6vw, 4.6rem); text-align: center; border: 1px solid var(--line); background: linear-gradient(135deg, var(--crimson-deep), var(--ink-1) 55%, var(--ink)); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -10%, rgba(216,30,52,0.22), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 0.8rem; }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ----------------------------- sticky mobile bar ----------------------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 0.6rem; padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(10,10,12,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; padding: 0.85rem 1rem; }
@media (max-width: 768px) { .mobile-bar { display: flex; } body { padding-bottom: 4.5rem; } }

/* ----------------------------- footer ---------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) 0 2rem; background: linear-gradient(180deg, var(--ink), #060608); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.4rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin: 1rem 0 1.4rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--bone-dim); padding: 0.32rem 0; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col a:hover { color: var(--red-bright); padding-left: 0.3rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--bone-dim); transition: 0.3s var(--ease); }
.footer-social a:hover { color: var(--ink); background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: 0.78rem; color: var(--bone-faint); }
.footer-bottom a:hover { color: var(--red); }

/* ----------------------------- reveal ---------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ----------------------------- breadcrumb ------------------------------ */
.crumbs { display: flex; gap: 0.5rem; align-items: center; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--bone-faint); padding-top: 6.5rem; }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--red-deep); }

/* page hero (interior) */
.page-hero { padding: 2rem 0 1rem; position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 0.8rem 0; }

/* prose for guides */
.prose { max-width: 72ch; }
.prose h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; color: var(--bone-dim); }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--red-bright); border-bottom: 1px solid var(--red-deep); }
.prose strong { color: var(--bone); }
.prose .callout { border-left: 2px solid var(--red); background: var(--ink-1); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6rem 0; }

/* utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.flex { display: flex; } .items-center { align-items: center; } .gap-1 { gap: 1rem; } .wrap { flex-wrap: wrap; }
.muted { color: var(--bone-faint); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ----------------------------- hero rating ----------------------------- */
.hero-rating { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.4rem; font-size: 0.82rem; color: var(--bone-dim); animation: fadeUp 1s var(--ease) 0.62s both; flex-wrap: wrap; }
.hero-rating .stars { color: var(--red-bright); letter-spacing: 0.12em; font-size: 0.95rem; }
.hero-rating b { color: var(--bone); font-weight: 600; }
.hero-rating .pipe { width: 1px; height: 14px; background: var(--line); }

/* venue card dual CTA + title link */
.venue-card h3 a { color: inherit; transition: color 0.3s ease; }
.venue-card:hover h3 a { color: var(--red-bright); }
.venue-card .card-actions .btn { flex: 1; padding: 0.62rem 0.6rem; font-size: 0.66rem; letter-spacing: 0.1em; }

/* keep stats two-up on phones rather than a tall single column */
.stat-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------------------------- mobile polish --------------------------- */
@media (max-width: 768px) {
  .section { padding: clamp(2.8rem, 9vw, 4.5rem) 0; }
  .section-head { margin-bottom: 2rem; }
  .hero { min-height: 92svh; padding: 6rem 0 3rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-trust { gap: 1.1rem 1.6rem; margin-top: 2rem; }
  .hero-trust .t b { font-size: 1.55rem; }
  .crumbs { padding-top: 5.5rem; }
  .cta-band { padding: 2.2rem 1.3rem; }
  .quote p { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .container { width: min(100% - 1.8rem, var(--container)); }
  .hero h1.display { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .hero-actions { gap: 0.7rem; }
  .host-name { font-size: 1.7rem; }
  .modal-card { padding: 1.4rem 1.15rem; }
  .field-row { grid-template-columns: 1fr; }
}
/* comfortable tap targets on touch devices */
@media (hover: none) {
  .btn, .nav a, .share-btn, .footer-col a, .faq-q { min-height: 44px; }
  .footer-col a { padding: 0.5rem 0; }
}
