/* Hub layout — RRCreaties.com */

.hub-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 27, 75, 0.85), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(12, 74, 110, 0.65), transparent 45%),
    linear-gradient(135deg, #090c1f, #131b3f 55%, #24164a);
}

.hub-hero::before,
.hub-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.35;
  pointer-events: none;
}

.hub-hero::before {
  width: 240px;
  height: 240px;
  background: #f59e0b;
  top: 8%;
  left: -70px;
}

.hub-hero::after {
  width: 300px;
  height: 300px;
  background: #38bdf8;
  bottom: -100px;
  right: -70px;
}

.hub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.hub-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f8fafc;
  margin-bottom: 10px;
}

.hub-hero .hub-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #e2e8f0;
  margin-bottom: 16px;
  font-weight: 600;
}

.hub-hero .hub-lead {
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hub-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hub-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hub-btn-primary {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #111827;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.hub-btn-secondary {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
}

.hub-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.hub-section {
  padding: 56px 0;
}

.hub-section-title {
  color: #f8fafc;
  margin-bottom: 8px;
}

.hub-section-lead {
  color: #94a3b8;
  margin-bottom: 28px;
}

.pillar-card {
  height: 100%;
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
  transition: transform 0.2s, border-color 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.55);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pillar-card h3 {
  color: #f8fafc;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pillar-card p {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.6;
}

.pillar-internal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 10px;
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}

.pillar-internal:hover {
  color: #fde68a;
}

.pillar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillar-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #475569;
  color: #e2e8f0;
  font-size: 0.86rem;
  text-decoration: none;
}

.pillar-links a:hover {
  border-color: #f59e0b;
  color: #fff;
}

/* --- Creator panel: Robert | foto | Carla (home) --- */
.creator-section {
  padding-bottom: 64px;
}

.creator-panel {
  display: grid;
  gap: clamp(20px, 2.5vw, 28px);
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.6), rgba(9, 12, 31, 0.45));
  grid-template-columns: 1fr;
  grid-template-areas:
    "photo"
    "robert"
    "carla";
}

.creator-col--robert {
  grid-area: robert;
}

.creator-panel__photo {
  grid-area: photo;
  position: relative;
  margin: 0 auto;
  width: min(100%, 280px);
}

.creator-col--carla {
  grid-area: carla;
}

@media (min-width: 768px) {
  .creator-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "photo photo"
      "robert carla";
    align-items: start;
  }

  .creator-panel__photo {
    width: min(100%, 300px);
  }

  .creator-col--carla {
    border-left: 1px solid rgba(167, 139, 250, 0.22);
    padding-left: clamp(16px, 2vw, 24px);
  }

  .creator-col--robert {
    padding-right: clamp(8px, 1.5vw, 16px);
  }
}

@media (min-width: 992px) {
  .creator-panel {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 260px) minmax(0, 1fr);
    grid-template-areas: "robert photo carla";
    gap: clamp(20px, 2.2vw, 32px);
  }

  .creator-panel__photo {
    width: 100%;
    max-width: 260px;
    align-self: center;
  }

  .creator-col--carla {
    border-left: 1px solid rgba(167, 139, 250, 0.22);
    padding-left: clamp(18px, 2vw, 28px);
  }

  .creator-col--robert {
    padding-right: clamp(12px, 1.5vw, 20px);
    border-right: 1px solid rgba(245, 158, 11, 0.18);
  }
}

@media (min-width: 1200px) {
  .creator-panel {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) minmax(0, 1fr);
  }

  .creator-panel__photo {
    max-width: 280px;
  }
}

.creator-panel__frame {
  position: relative;
  transform: rotate(-1deg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 16px 22px 40px rgba(0, 0, 0, 0.4);
}

.creator-panel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 12, 31, 0.55) 100%);
  pointer-events: none;
}

.creator-panel__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.creator-panel__slash {
  position: absolute;
  width: 6px;
  height: 38%;
  border-radius: 4px;
  transform: skewY(-6deg);
}

.creator-panel__slash--orange {
  right: -10px;
  bottom: 20%;
  background: linear-gradient(180deg, #f59e0b, #ea580c);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
}

.creator-panel__slash--violet {
  left: -10px;
  top: 18%;
  background: linear-gradient(180deg, #c4b5fd, #7c3aed);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.45);
}

.creator-col__eyebrow {
  margin: 0 0 6px;
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.creator-col__eyebrow--carla {
  color: #c4b5fd;
}

.creator-col__title {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  color: #f8fafc;
  line-height: 1.25;
}

.creator-tags--carla li {
  border-color: rgba(167, 139, 250, 0.4);
  color: #ede9fe;
}

.creator-col__lead {
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.65;
}

.creator-col__line {
  margin: 0 0 18px;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.creator-col__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hub-btn-carla {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #7c3aed, #6d28d9);
  color: #f5f3ff;
  border: 1px solid rgba(167, 139, 250, 0.45);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(109, 40, 217, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hub-btn-carla:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.45);
}

.hub-btn-carla--portal {
  gap: 10px;
  padding: 11px 20px 11px 18px;
}

.hub-btn-carla__title {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hub-btn-carla__sep {
  width: 1px;
  height: 1.1em;
  background: rgba(237, 233, 254, 0.45);
  flex-shrink: 0;
}

.hub-btn-carla__domain {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #ede9fe;
  opacity: 0.95;
}

.hub-btn-carla__icon {
  margin-left: 2px;
  font-size: 1rem;
  opacity: 0.9;
}

.hub-btn-carla--portal:hover .hub-btn-carla__domain {
  color: #fff;
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.creator-tags li {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Projects bento (projecten.php) --- */
.projects-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.projects-bento__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 20px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: transform 0.22s ease, border-color 0.22s, box-shadow 0.22s;
}

.projects-bento__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
  pointer-events: none;
}

.projects-bento__tile:hover {
  transform: translateY(-5px);
  color: inherit;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.projects-bento__tile--featured {
  grid-column: 1 / -1;
  min-height: 168px;
}

.projects-bento__tile--web {
  grid-column: span 7;
}

.projects-bento__tile--links {
  grid-column: span 5;
}

.projects-bento__tile--foto::before {
  background: linear-gradient(125deg, rgba(180, 83, 9, 0.35), rgba(15, 23, 42, 0.92) 50%);
}

.projects-bento__tile--foto:hover {
  border-color: rgba(245, 158, 11, 0.55);
}

.projects-bento__tile--web::before {
  background: linear-gradient(125deg, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.92) 55%);
}

.projects-bento__tile--web:hover {
  border-color: rgba(96, 165, 250, 0.55);
}

.projects-bento__tile--links::before {
  background: linear-gradient(125deg, rgba(5, 150, 105, 0.32), rgba(15, 23, 42, 0.92) 55%);
}

.projects-bento__tile--links:hover {
  border-color: rgba(52, 211, 153, 0.5);
}

.projects-bento__num,
.projects-bento__icon,
.projects-bento__title,
.projects-bento__text,
.projects-bento__cta {
  position: relative;
  z-index: 1;
}

.projects-bento__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.55);
  margin-bottom: 8px;
}

.projects-bento__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  color: #f8fafc;
  margin-bottom: 12px;
}

.projects-bento__tile--featured .projects-bento__icon {
  width: 52px;
  height: 52px;
  font-size: 1.55rem;
}

.projects-bento__title {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #f8fafc;
}

.projects-bento__tile--featured .projects-bento__title {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.projects-bento__text {
  margin: 0 0 12px;
  flex-grow: 1;
  color: #cbd5e1;
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 56ch;
}

.projects-bento__cta {
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.9rem;
}

.projects-menu-hint {
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid #38bdf8;
  background: rgba(12, 74, 110, 0.25);
  color: #bae6fd;
  font-size: 0.92rem;
}

.project-hub-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(170deg, #1e293b, #111827);
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.project-hub-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  color: inherit;
}

.project-hub-card h2 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.project-hub-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.project-hub-cta {
  color: #fbbf24;
  font-weight: 600;
  margin-top: auto;
  padding-top: 10px;
}

.project-hub-card--priority {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(155deg, #1e3a5f, #111827 62%);
}

.project-hub-card--priority:hover {
  border-color: #38bdf8;
}

.project-hub-card--paired {
  border-color: rgba(245, 158, 11, 0.45);
}

.project-hub-card--paired:hover {
  border-color: #f59e0b;
}

.project-hub-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(12, 74, 110, 0.45);
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-row-top {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 48px;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(9, 12, 31, 0.92);
  color: #cbd5e1;
}

.site-footer-brand {
  color: #f8fafc;
  font-weight: 700;
}

.site-footer-heading {
  color: #e2e8f0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer-links a:hover {
  color: #fbbf24;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer-social a:hover {
  border-color: #f59e0b;
  color: #fbbf24;
}

.site-footer-domain-hint {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.site-footer-domain-hint a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
}

.site-footer-domain-hint a:hover {
  color: #fbbf24;
}

.site-footer-domain-sep {
  margin: 0 6px;
  color: #64748b;
}

.hub-domain-hint {
  max-width: var(--rr-copy-max, 100%);
  margin: -8px 0 20px;
  font-size: 0.92rem;
  color: #94a3b8;
}

.hub-domain-hint a {
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}

.hub-domain-hint a:hover {
  color: #fde68a;
  text-decoration: underline;
}

.gate-domain-hint {
  margin: -18px 0 22px;
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #94a3b8;
}

.page-title-domain {
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.about-layout {
  align-items: flex-start;
}

.about-photo-col {
  display: flex;
  justify-content: center;
}

.about-photo-wrap {
  width: 100%;
  max-width: min(100%, 340px);
  margin: 0 auto;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 16px 22px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .about-photo-col {
    justify-content: flex-start;
  }

  .about-photo-wrap {
    max-width: 100%;
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 991.98px) {
  .about-photo-wrap {
    max-width: min(88vw, 320px);
    margin-bottom: 4px;
  }
}

.about-domain-note {
  margin: 16px 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.45), rgba(15, 23, 42, 0.55));
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-domain-note a {
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}

.about-domain-note a:hover {
  color: #fde68a;
  text-decoration: underline;
}

.about-site-list {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.about-site-list a {
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}

.about-site-list a:hover {
  color: #fde68a;
  text-decoration: underline;
}

.site-footer-copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(71, 85, 105, 0.45);
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Timer gate (index.php) — concert spotlight */
.gate-page {
  min-height: 100vh;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.gate-page--concert,
.gate-page--spotlight {
  background: #070b18;
}

.gate-page--theater .gate-ambient {
  background:
    radial-gradient(ellipse 80% 50% at 16% 0%, rgba(236, 72, 153, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(167, 139, 250, 0.24), transparent 50%),
    radial-gradient(circle at 50% 110%, rgba(14, 116, 144, 0.2), transparent 45%),
    linear-gradient(165deg, #070b18 0%, #1a0f2e 42%, #0f172a 100%);
}

.gate-page--theater .gate-event-card--spotlight {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.7),
    rgba(167, 139, 250, 0.5) 48%,
    rgba(56, 189, 248, 0.35)
  );
}

.gate-page--theater .gate-event-kicker-dot {
  background: #f472b6;
  box-shadow: 0 0 12px rgba(244, 114, 182, 0.65);
}

.gate-page--theater .gate-event-time {
  color: #fbcfe8;
}

.gate-event-time-note {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.gate-page--theater .gate-event-time-note {
  color: #c4b5fd;
}

.gate-page--theater .gate-event-tag {
  border-color: rgba(244, 114, 182, 0.45);
  color: #fce7f3;
}

.gate-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(180, 120, 40, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 15%, rgba(109, 40, 217, 0.16), transparent 50%),
    radial-gradient(circle at 50% 110%, rgba(14, 116, 144, 0.22), transparent 45%),
    linear-gradient(165deg, #070b18 0%, #12102b 40%, #0f172a 100%);
}

.gate-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.gate-main,
.gate-footer {
  position: relative;
  z-index: 1;
}

.gate-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 8px;
}

/* --- Event poster card --- */
.gate-event-card--spotlight {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.75),
    rgba(167, 139, 250, 0.45) 45%,
    rgba(56, 189, 248, 0.35) 100%
  );
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(180, 120, 40, 0.08);
}

.gate-event-glow,
.gate-event-shine {
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.gate-event-glow {
  inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.2), transparent 55%);
  z-index: 0;
}

.gate-event-shine {
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  z-index: 1;
}

.gate-event-inner {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  padding: 28px 26px 24px;
  background:
    linear-gradient(155deg, rgba(22, 18, 48, 0.97) 0%, rgba(12, 18, 36, 0.98) 55%, rgba(15, 23, 42, 0.98) 100%);
}

.gate-event-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gate-event-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.9);
  animation: gatePulse 2s ease-in-out infinite;
}

@keyframes gatePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.gate-event-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.gate-event-clock {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-event-time {
  font-size: clamp(2.8rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #fde68a 55%, #d4a574 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gate-event-tag {
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(196, 181, 253, 0.45);
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.5), rgba(67, 56, 202, 0.35));
  color: #ede9fe;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gate-event-date-stack {
  display: block;
  text-align: right;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.65);
}

.gate-event-date-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f8fafc;
}

.gate-event-date-month,
.gate-event-date-year {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.gate-event-date-month {
  margin-top: 2px;
  color: #cbd5e1;
}

.gate-event-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 16px;
  line-height: 1.2;
  text-wrap: balance;
}

.gate-event-venue {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.gate-event-venue i {
  color: #fbbf24;
  font-size: 1.15rem;
  margin-top: 3px;
}

.gate-event-venue strong {
  color: #f1f5f9;
}

.gate-event-quote {
  margin: 0 0 20px;
  padding: 16px 18px 16px 20px;
  border-left: 3px solid rgba(251, 191, 36, 0.65);
  border-radius: 0 12px 12px 0;
  background: rgba(15, 23, 42, 0.55);
}

.gate-event-quote p {
  margin: 0;
  color: #b8c5d9;
  font-size: 0.94rem;
  line-height: 1.7;
  font-style: italic;
}

.gate-event-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.gate-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fde68a;
  font-weight: 600;
  font-size: 0.88rem;
}

.gate-event-badge--link {
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.gate-event-badge--link:hover {
  transform: translateY(-1px);
  color: #fff;
}

.gate-page--theater .gate-event-badge,
.gate-page--theater .gate-event-badge--link {
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.22), rgba(167, 139, 250, 0.12));
  border-color: rgba(244, 114, 182, 0.45);
  color: #fce7f3;
}

.gate-page--theater .gate-event-quote {
  border-left-color: rgba(244, 114, 182, 0.65);
}

.gate-page--theater .gate-event-venue i {
  color: #f472b6;
}

.gate-event-date-line {
  color: #94a3b8;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

/* --- Countdown panel --- */
.gate-countdown-panel__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.gate-countdown-eyebrow {
  margin: 0 0 8px;
  color: #a5b4fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gate-countdown-heading {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.2;
}

.gate-countdown-lead {
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0 0 22px;
}

.gate-page--concert .countdown-wrap--concert {
  max-width: none;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(17, 24, 39, 0.75));
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.35);
}

.gate-page--concert .countdown-grid--concert {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 12px;
}

.gate-page--concert .countdown-box {
  position: relative;
  text-align: center;
  padding: 16px 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gate-page--concert .countdown-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}

.gate-page--concert .countdown-box--days::before {
  background: linear-gradient(160deg, rgba(30, 58, 138, 0.55), rgba(15, 23, 42, 0.9));
}

.gate-page--concert .countdown-box--hours::before {
  background: linear-gradient(160deg, rgba(91, 33, 182, 0.45), rgba(15, 23, 42, 0.9));
}

.gate-page--concert .countdown-box--minutes::before {
  background: linear-gradient(160deg, rgba(180, 83, 9, 0.4), rgba(15, 23, 42, 0.9));
}

.gate-page--concert .countdown-box--seconds::before {
  background: linear-gradient(160deg, rgba(217, 119, 6, 0.5), rgba(15, 23, 42, 0.9));
}

.gate-page--concert .countdown-value,
.gate-page--concert .countdown-label {
  position: relative;
  z-index: 1;
}

.gate-page--concert .countdown-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.gate-page--concert .countdown-box--days .countdown-value { color: #93c5fd; }
.gate-page--concert .countdown-box--hours .countdown-value { color: #c4b5fd; }
.gate-page--concert .countdown-box--minutes .countdown-value { color: #fcd34d; }
.gate-page--concert .countdown-box--seconds .countdown-value { color: #fdba74; }

.gate-page--concert .countdown-box--seconds {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.12);
}

.gate-page--concert .countdown-box--seconds.is-ticking {
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.28);
}

.gate-page--concert .countdown-label {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.gate-page--concert .countdown-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  font-size: 0.9rem;
  text-align: center;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gate-preview-btn--primary {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
}

.gate-preview-btn--primary:hover {
  color: #111827;
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
}

.gate-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 16px;
}

.gate-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f8fafc;
  margin-bottom: 28px;
}

.gate-logo img {
  width: 42px;
  height: 42px;
}

.gate-logo span {
  font-weight: 700;
  font-size: 1.1rem;
}

.gate-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.gate-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.gate-preview-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(30, 27, 75, 0.85);
  color: #f8fafc;
}

a.gate-preview-btn {
  text-decoration: none;
}

.gate-preview-btn--accent {
  border-color: rgba(244, 114, 182, 0.55);
  background: rgba(76, 29, 149, 0.35);
  color: #fce7f3;
}

.gate-preview-btn--accent:hover {
  border-color: #f9a8d4;
  background: rgba(91, 33, 182, 0.55);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .gate-event-kicker-dot,
  .gate-page--concert .countdown-box--seconds.is-ticking {
    animation: none;
  }
}

.preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #0c4a6e, #1e3a5f);
  border-bottom: 1px solid rgba(56, 189, 248, 0.45);
  color: #e0f2fe;
  font-size: 0.9rem;
}

.preview-banner a {
  color: #fde68a;
  font-weight: 600;
  text-decoration: none;
}

.preview-banner a:hover {
  color: #fff;
  text-decoration: underline;
}

body.has-preview-banner {
  padding-top: 42px;
}

body.has-preview-banner .header {
  top: 42px;
}

/* --- Hub nav (header) --- */
.navmenu a .nav-link__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
}

.navmenu a .nav-link__label {
  line-height: 1.2;
  white-space: nowrap;
}

.navmenu a.nav-link--spotlight {
  justify-content: flex-start !important;
}

.nav-link__meta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-link__meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fce7f3;
  border: 1px solid rgba(244, 114, 182, 0.55);
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.35), rgba(167, 139, 250, 0.25));
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
}

@media (min-width: 1200px) {
  .navmenu li.nav-item--spotlight > a:not(.active) {
    color: #f9a8d4;
  }

  .navmenu li.nav-item--spotlight > a:not(.active)::after {
    background: linear-gradient(90deg, #f472b6, #c4b5fd);
  }

  body.has-nav-spotlight .navmenu li.nav-item--spotlight > a .nav-link__meta-tag {
    animation: nav-spotlight-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes nav-spotlight-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
  }

  50% {
    box-shadow: 0 0 16px rgba(236, 72, 153, 0.45);
  }
}

@media (max-width: 1199px) {
  .navmenu a.nav-link--spotlight {
    justify-content: space-between !important;
  }

  .navmenu a .nav-link__inner {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.has-nav-spotlight .navmenu li.nav-item--spotlight > a .nav-link__meta-tag {
    animation: none;
  }
}

body.has-preview-banner .main {
  scroll-margin-top: 120px;
}

@media (max-width: 991px) {
  .gate-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gate-countdown-panel {
    order: -1;
  }

  .creator-col--carla {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(167, 139, 250, 0.22);
    padding-top: 20px;
  }

  .creator-col--robert {
    padding-right: 0;
    border-right: none;
  }

  .creator-col__title,
  .creator-col__lead,
  .creator-col__line {
    text-align: center;
  }

  .creator-col__eyebrow {
    text-align: center;
  }

  .creator-tags {
    justify-content: center;
  }

  .creator-col__actions {
    justify-content: center;
  }

  .projects-bento__tile--web,
  .projects-bento__tile--links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .gate-page--concert .countdown-grid--concert {
    grid-template-columns: repeat(2, minmax(72px, 1fr));
  }

  .hub-hero {
    padding-top: 110px;
  }

  .gate-event-hero-row {
    flex-direction: column;
    align-items: stretch;
  }

  .gate-event-date-stack {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }

  .gate-event-date-day {
    font-size: 2rem;
  }

  .gate-event-date-month,
  .gate-event-date-year {
    display: inline;
    font-size: 0.9rem;
  }

  .gate-event-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .gate-actions {
    flex-direction: column;
  }

  .gate-actions .gate-preview-btn {
    width: 100%;
    justify-content: center;
  }

  .creator-panel__frame {
    transform: none;
  }

  .creator-panel__slash {
    display: none;
  }
}
