/* Event Staff NYC — visual match to live site (gold / #0D1117) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap");

:root {
  --bg: #0d1117;
  --bg-elevated: #161b22;
  --bg-muted: #21262d;
  --border: #30363d;
  --gold: #c9a962;
  --gold-hover: #b8984f;
  --gold-dim: rgba(201, 169, 98, 0.15);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-soft: #8b949e;
  --footer-bg: #1a1a1a;
  --container: min(100% - 2rem, 72rem);
  --radius: 0.5rem;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Poppins", var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: var(--container); margin-inline: auto; padding-inline: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.5rem 1rem;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 3.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .brand img { height: 4rem; }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover,
.site-nav a.is-active {
  background: var(--bg-muted);
  color: var(--text);
  text-decoration: none;
}

.site-nav__quote,
.site-nav__book {
  display: none;
  margin-left: 0.5rem;
  white-space: nowrap;
  font: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.site-nav__book {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.site-nav__book:hover {
  background: var(--bg-muted);
  color: var(--text);
}
.site-nav__quote {
  border: 0;
  background: linear-gradient(135deg, #c9a962, #b8984f);
  color: #0d1117;
}
.site-nav__quote:hover {
  color: #0d1117;
  filter: brightness(1.05);
}

.nav-toggle {
  display: inline-flex;
  margin-left: auto;
  padding: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }

.site-nav--open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0.75rem 1rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.site-nav--open a { padding: 0.75rem 1rem; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .site-nav__quote,
  .site-nav__book { display: inline-flex; }
  .site-nav--open .site-nav__quote,
  .site-nav--open .site-nav__book {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0 0;
  }
  .nav-toggle { display: none; }
  .site-nav--open {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav--open a { padding: 0.5rem 0.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.25);
}
.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(201, 169, 98, 0.35);
  text-decoration: none;
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn--outline:hover {
  background: var(--border);
  color: var(--text);
  text-decoration: none;
}
.btn--small { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--text-soft); text-decoration: none; }

/* Main */
.site-main { flex: 1; }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 1rem 4rem;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero__media-badge {
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(201, 169, 98, 0.35);
  display: none;
}
@media (min-width: 900px) {
  .hero__media-badge { display: block; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006BB6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__glow-a,
.hero__glow-b {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow-a {
  top: 0;
  left: 25%;
  background: rgba(201, 169, 98, 0.2);
}
.hero__glow-b {
  bottom: 0;
  right: 25%;
  background: rgba(201, 169, 98, 0.1);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1,
.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--text);
}
.hero__title-line { display: block; color: var(--text); }
.hero__title-accent { display: block; color: var(--gold); }
.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.section {
  padding: 4rem 1rem;
}
.section--alt {
  background: var(--bg);
}
.section--band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
}
.section__title--center { text-align: center; }
.section__lead {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  text-align: center;
  color: var(--text-muted);
}

/* Service cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: rgba(201, 169, 98, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.service-card__media {
  position: relative;
  height: 12rem;
  background: var(--bg-muted);
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__media img {
  transform: scale(1.04);
}
.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.service-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.service-card__desc {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.service-card__rate {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--gold);
}
.service-card .btn--block { width: 100%; }

/* Trust band */
.trust-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.trust-card p { margin: 0; color: var(--text-muted); }

/* Inner pages */
.page-head {
  padding: 5rem 1rem 2.5rem;
  background: linear-gradient(180deg, #161b22 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  max-width: 48rem;
}

/* Scroll reveal (Framer-style fade-up) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.content {
  padding: 2.5rem 1rem 4rem;
}
.content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
  color: var(--text);
}
.content h3 { margin: 1.5rem 0 0.75rem; color: var(--text); }
.content p { margin: 0 0 1rem; color: var(--text-muted); max-width: 70ch; }
.content ul,
.content ol { margin: 0 0 1.25rem; padding-left: 1.25rem; color: var(--text-muted); }
.content li { margin-bottom: 0.65rem; max-width: 72ch; }
.content li strong { color: var(--text); }
.content dl { margin: 0 0 1.5rem; }
.content dt { font-weight: 700; color: var(--text); margin-top: 1.25rem; }
.content dt:first-child { margin-top: 0; }
.content dd { margin: 0.35rem 0 0; color: var(--text-muted); max-width: 70ch; }
.content section { margin-top: 2rem; }

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.link-row a { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--footer-bg);
  padding: 4rem 1rem 2rem;
  margin-top: auto;
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: var(--text-soft);
  font-size: 0.9rem;
  text-decoration: none;
}
.site-footer a:hover { color: var(--gold); }
.site-footer__brand img { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.6;
}
.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.site-footer__note { width: 100%; font-size: 0.8rem; opacity: 0.85; }

/* Demo gate */
body.demo-gate-open { overflow: hidden; }

/* Trust strip */
.trust-strip {
  padding: 2.5rem 1rem;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.trust-strip__label {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
}
.trust-strip__logos span {
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.trust-strip__logos span:hover { color: var(--gold); }
.trust-strip__logos .logo-serif { font-family: Georgia, serif; font-style: italic; }
.trust-strip__logos .logo-wide { letter-spacing: 0.2em; font-size: 0.8rem; }

/* Hero extras */
.hero__checks {
  display: grid;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hero__checks li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.hero__media-rating {
  position: absolute;
  left: -0.75rem;
  bottom: -0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(201, 169, 98, 0.35);
  display: none;
}
@media (min-width: 900px) {
  .hero__media-rating { display: block; }
}
.hero__media { position: relative; }

/* Steps */
.steps-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  height: 100%;
}
.step-card__num {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.step-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.step-card p { margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.step-card ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.step-card li { margin-bottom: 0.35rem; }

/* Carousel */
.carousel {
  position: relative;
}
.carousel__viewport { overflow: hidden; border-radius: calc(var(--radius) + 2px); }
.carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}
.carousel__slide {
  flex: 0 0 100%;
  padding: 0 0.25rem;
}
.testimonial-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg-elevated);
  min-height: 16rem;
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card__head img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__name { margin: 0; font-weight: 600; color: var(--text); }
.testimonial-card__role { margin: 0; font-size: 0.85rem; color: var(--text-soft); }
.testimonial-card__stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial-card__quote { margin: 0; color: var(--text-muted); line-height: 1.65; }
.testimonial-card__event {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.carousel__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-muted);
  color: var(--text);
  cursor: pointer;
}
.carousel__btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel__dots { display: flex; gap: 0.4rem; }
.carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 0;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}
.carousel__dot.is-active { background: var(--gold); }

/* Accordion FAQ */
.accordion { display: grid; gap: 0.65rem; }
.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}
.accordion summary {
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}
.accordion details[open] summary::after { content: "−"; }
.accordion .accordion__body {
  padding: 0 1.1rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.cta-band p { margin: 0 auto 1.25rem; max-width: 36rem; color: var(--text-muted); }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.demo-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(6px);
}
.demo-gate[hidden] { display: none; }
.demo-gate__card {
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}
.demo-gate__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.demo-gate__text {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}
.demo-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
