/* HPE-style RSVP event page — layout + visual parity */

body.single-moxie_event {
  background: #fff;
}

body.single-moxie_event .site-header,
body.single-moxie_event .sticky-footer,
body.single-moxie_event .moxie-ai,
body.single-moxie_event .site-footer {
  display: none !important;
}

body.single-moxie_event #main-content {
  padding: 0;
  margin: 0;
  max-width: none;
  background: #fff;
  overflow-x: clip;
}

.rsvp-event {
  --rsvp-brand: #01a982;
  --rsvp-ink: #0a0a0a;
  --rsvp-muted: #5b5b5b;
  --rsvp-line: rgba(10, 10, 10, 0.1);
  --rsvp-soft: #f3f6f5;
  font-family: var(--rsvp-font, "Manrope", var(--font-sans, system-ui), sans-serif);
  color: var(--rsvp-ink);
  background: #fff;
}

.rsvp-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Top nav — HPE clean bar */
.rsvp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rsvp-line);
  backdrop-filter: blur(12px);
}

.rsvp-nav__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.rsvp-nav__inner > .rsvp-btn {
  margin-left: auto;
  flex-shrink: 0;
}

.rsvp-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--rsvp-ink);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rsvp-nav__mark {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--rsvp-brand);
  box-shadow: 4px 0 0 color-mix(in srgb, var(--rsvp-brand) 55%, #000);
}

.rsvp-nav__word {
  font-size: 18px;
}

.rsvp-nav__tabs {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 22px;
}

.rsvp-nav__tabs a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 650;
  color: var(--rsvp-muted);
  text-decoration: none;
}

.rsvp-nav__tabs a.is-active,
.rsvp-nav__tabs a:hover {
  color: var(--rsvp-ink);
}

.rsvp-nav__tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--rsvp-brand);
}

@media (min-width: 900px) {
  .rsvp-nav__tabs {
    display: flex;
  }
}

.rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--rsvp-brand);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.rsvp-btn:hover:not(:disabled) {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.rsvp-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rsvp-btn--lg {
  min-height: 52px;
  padding: 0 26px;
  font-size: 15px;
}

.rsvp-btn--block {
  width: 100%;
}

.rsvp-text-link {
  color: var(--rsvp-brand);
  font-weight: 750;
  text-decoration: none;
}

.rsvp-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rsvp-brand);
}

/* Hero — full-bleed banner / fade carousel */
.rsvp-hero {
  position: relative;
  background: #041812;
  overflow: hidden;
  line-height: 0;
}

.rsvp-hero__carousel {
  position: relative;
  width: 100%;
}

.rsvp-hero__track {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(72vh, 640px);
  min-height: 240px;
  background: #041812;
}

.rsvp-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.rsvp-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.rsvp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rsvp-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.rsvp-hero__nav:hover {
  background: rgba(0, 0, 0, 0.58);
}

.rsvp-hero__nav--prev {
  left: 14px;
}

.rsvp-hero__nav--next {
  right: 14px;
}

.rsvp-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.rsvp-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.rsvp-hero__dot.is-active {
  width: 22px;
  background: #fff;
}

@media (max-width: 640px) {
  .rsvp-hero__nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .rsvp-hero__nav--prev {
    left: 8px;
  }

  .rsvp-hero__nav--next {
    right: 8px;
  }
}

/* Sections */
.rsvp-band {
  padding: 72px 0;
}

.rsvp-why {
  background: #fff;
}

.rsvp-why__intro {
  max-width: 48rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--rsvp-muted);
  margin-bottom: 36px;
}

.rsvp-why__intro p {
  margin: 0 0 1em;
}

.rsvp-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .rsvp-why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.rsvp-why__card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
}

.rsvp-why__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8ecea;
}

.rsvp-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rsvp-why__body {
  padding: 22px 20px 24px;
}

.rsvp-why__card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.rsvp-why__card p {
  margin: 0;
  color: var(--rsvp-muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.rsvp-why__footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rsvp-line);
  display: grid;
  gap: 22px;
  align-items: start;
}

@media (min-width: 720px) {
  .rsvp-why__footer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px 40px;
    align-items: end;
  }
}

.rsvp-why__footer-copy {
  min-width: 0;
  max-width: 40rem;
}

.rsvp-why__headline {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--rsvp-ink);
}

.rsvp-why__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--rsvp-muted);
  line-height: 1.65;
  font-size: 15px;
}

.rsvp-why__bullets li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.05em;
}

.rsvp-why__bullets li + li {
  margin-top: 6px;
}

.rsvp-why__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rsvp-brand);
}

.rsvp-why__footer-cta {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .rsvp-why__footer-cta {
    justify-content: flex-end;
    padding-bottom: 2px;
  }
}

.rsvp-facts {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--rsvp-line);
  border-bottom: 1px solid var(--rsvp-line);
}

.rsvp-facts__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 960px) {
  .rsvp-facts__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
  }
}

.rsvp-facts__list {
  display: grid;
  gap: 0;
  align-content: center;
}

.rsvp-fact {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--rsvp-line);
}

.rsvp-fact:first-child {
  padding-top: 0;
}

.rsvp-fact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rsvp-fact span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rsvp-muted);
}

.rsvp-fact strong {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.rsvp-fact__calendar {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rsvp-fact__calendar:hover {
  color: var(--rsvp-brand);
}

.rsvp-fact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 13px;
  font-weight: 650;
}

.rsvp-fact__actions a {
  color: var(--rsvp-brand);
  text-decoration: none;
}

.rsvp-fact__actions a:hover {
  text-decoration: underline;
}

.rsvp-facts__map {
  min-height: 280px;
  background: #e8ecea;
  overflow: hidden;
}

.rsvp-facts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.rsvp-section-title {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--rsvp-ink);
}

.rsvp-section-title--light {
  color: #fff;
}

.rsvp-agenda {
  background: #1a1e23;
  color: #fff;
}

.rsvp-agenda__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.rsvp-agenda__tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rsvp-agenda__tab:hover {
  border-color: #fff;
  color: #fff;
}

.rsvp-agenda__tab.is-active {
  background: var(--rsvp-brand);
  border-color: var(--rsvp-brand);
  color: #fff;
}

.rsvp-agenda__day[hidden] {
  display: none !important;
}

.rsvp-agenda__day-title {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.rsvp-agenda__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.rsvp-agenda__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  align-items: start;
}

.rsvp-agenda__time {
  font-size: 15px;
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.01em;
  padding-top: 2px;
}

.rsvp-agenda__body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.rsvp-agenda__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}

.rsvp-agenda__tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 0;
}

@media (min-width: 900px) {
  .rsvp-agenda__tracks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rsvp-agenda__track + .rsvp-agenda__track {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 22px;
  }
}

.rsvp-agenda__track-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 750;
  color: #fff;
}

.rsvp-agenda__track strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 640px) {
  .rsvp-agenda__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.rsvp-speakers {
  background: #f6f7f8;
}

.rsvp-speakers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 720px) {
  .rsvp-speakers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .rsvp-speakers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rsvp-speakers__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  overflow: hidden;
}

.rsvp-speakers__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #dfe5e2;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
}

.rsvp-speakers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rsvp-speakers__copy {
  padding: 18px 18px 22px;
}

.rsvp-speakers__card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.rsvp-speakers__role {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 750;
  color: var(--rsvp-brand);
}

.rsvp-speakers__bio {
  margin: 0;
  font-size: 13.5px;
  color: var(--rsvp-muted);
  line-height: 1.55;
}

.rsvp-venue {
  background: #fff;
}

.rsvp-venue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .rsvp-venue__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
  }
}

.rsvp-venue__name {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #333;
}

.rsvp-venue__address {
  margin: 0 0 28px;
  max-width: 28rem;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.rsvp-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--rsvp-brand);
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.rsvp-outline-btn:hover {
  background: color-mix(in srgb, var(--rsvp-brand) 10%, #fff);
  color: #111;
}

.rsvp-venue__media {
  margin: 0;
  overflow: hidden;
}

.rsvp-venue__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rsvp-venue__map {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  letter-spacing: -0.02em;
  background:
    linear-gradient(145deg, rgba(1, 169, 130, 0.75), rgba(4, 24, 18, 0.88)),
    #0a2a22;
}

.rsvp-quote {
  background: #041812;
  color: #fff;
  padding: 64px 0;
}

.rsvp-quote .rsvp-wrap {
  display: flex;
  justify-content: center;
}

.rsvp-quote blockquote {
  margin: 0;
  max-width: min(58rem, 100%);
  width: 100%;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.4;
  text-wrap: pretty;
}

.rsvp-quote blockquote br {
  display: block;
  content: "";
}

.rsvp-sponsors {
  background: #fff;
}

.rsvp-sponsors--center .rsvp-section-title,
.rsvp-sponsors--center .rsvp-sponsors__tier-title {
  text-align: center;
}

.rsvp-sponsors--left .rsvp-section-title,
.rsvp-sponsors--left .rsvp-sponsors__tier-title {
  text-align: left;
}

.rsvp-sponsors__tier + .rsvp-sponsors__tier {
  margin-top: 44px;
}

.rsvp-sponsors__tier-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rsvp-ink);
}

.rsvp-sponsors__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  align-items: stretch;
}

.rsvp-sponsors--center .rsvp-sponsors__grid {
  justify-content: center;
}

.rsvp-sponsors__card {
  width: min(140px, calc(50% - 7px));
  flex: 0 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.12);
}

@media (min-width: 720px) {
  .rsvp-sponsors__grid {
    gap: 16px;
  }

  .rsvp-sponsors__card {
    width: 160px;
  }
}

@media (min-width: 1100px) {
  .rsvp-sponsors__grid {
    gap: 18px;
  }

  .rsvp-sponsors__card {
    width: 168px;
  }
}

/* —— Tier hierarchy —— */
.rsvp-sponsors__tier--platinum .rsvp-sponsors__tier-title {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: #1a1e23;
}

.rsvp-sponsors__tier--platinum .rsvp-sponsors__tier-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #c9ccd1, #8b9098, #c9ccd1);
}

.rsvp-sponsors--left .rsvp-sponsors__tier--platinum .rsvp-sponsors__tier-title::after {
  margin-left: 0;
  margin-right: auto;
}

.rsvp-sponsors__tier--platinum .rsvp-sponsors__grid {
  gap: 18px;
}

.rsvp-sponsors__tier--platinum .rsvp-sponsors__card {
  width: min(168px, calc(50% - 9px));
  padding: 22px;
  border-color: rgba(10, 10, 10, 0.18);
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.06);
}

@media (min-width: 720px) {
  .rsvp-sponsors__tier--platinum .rsvp-sponsors__card {
    width: 200px;
  }
}

@media (min-width: 1100px) {
  .rsvp-sponsors__tier--platinum .rsvp-sponsors__card {
    width: 220px;
  }
}

.rsvp-sponsors__tier--platinum .rsvp-sponsors__card img {
  max-width: 82%;
  max-height: 62%;
}

.rsvp-sponsors__tier--gold .rsvp-sponsors__tier-title {
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  color: #8a6a1a;
}

.rsvp-sponsors__tier--gold .rsvp-sponsors__tier-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #e8d5a3, #c9a227, #e8d5a3);
}

.rsvp-sponsors--left .rsvp-sponsors__tier--gold .rsvp-sponsors__tier-title::after {
  margin-left: 0;
  margin-right: auto;
}

.rsvp-sponsors__tier--gold .rsvp-sponsors__card {
  width: min(150px, calc(50% - 7px));
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(180deg, #fffef8 0%, #fff 70%);
}

@media (min-width: 720px) {
  .rsvp-sponsors__tier--gold .rsvp-sponsors__card {
    width: 172px;
  }
}

@media (min-width: 1100px) {
  .rsvp-sponsors__tier--gold .rsvp-sponsors__card {
    width: 180px;
  }
}

.rsvp-sponsors__tier--silver .rsvp-sponsors__tier-title {
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  color: #5c6570;
}

.rsvp-sponsors__tier--silver .rsvp-sponsors__tier-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 9px auto 0;
  background: #b8c0c8;
}

.rsvp-sponsors--left .rsvp-sponsors__tier--silver .rsvp-sponsors__tier-title::after {
  margin-left: 0;
  margin-right: auto;
}

.rsvp-sponsors__tier--silver .rsvp-sponsors__grid {
  gap: 12px;
}

.rsvp-sponsors__tier--silver .rsvp-sponsors__card {
  width: min(120px, calc(50% - 6px));
  padding: 14px;
  border-color: rgba(10, 10, 10, 0.08);
  background: #fafbfc;
}

@media (min-width: 720px) {
  .rsvp-sponsors__tier--silver .rsvp-sponsors__card {
    width: 136px;
  }
}

@media (min-width: 1100px) {
  .rsvp-sponsors__tier--silver .rsvp-sponsors__card {
    width: 144px;
  }
}

.rsvp-sponsors__tier--silver .rsvp-sponsors__card img {
  max-width: 72%;
  max-height: 50%;
  opacity: 0.92;
}

.rsvp-sponsors__tier--bronze .rsvp-sponsors__tier-title {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: #7a5a3a;
}

.rsvp-sponsors__tier--bronze .rsvp-sponsors__card {
  width: min(110px, calc(50% - 6px));
  padding: 12px;
  border-color: rgba(122, 90, 58, 0.22);
}

@media (min-width: 720px) {
  .rsvp-sponsors__tier--bronze .rsvp-sponsors__card {
    width: 124px;
  }
}

.rsvp-sponsors__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.rsvp-sponsors__link:hover,
.rsvp-sponsors__link:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
  outline: none;
}

.rsvp-sponsors__card img {
  max-width: 78%;
  max-height: 56%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rsvp-sponsors__card span {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}

.rsvp-register {
  background: #f3f4f5;
  padding: 72px 0 80px;
}

.rsvp-register__wrap {
  width: min(720px, calc(100% - 40px));
}

.rsvp-register .rsvp-section-title {
  margin-bottom: 28px;
}

.rsvp-register__closed {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.rsvp-enquiry {
  background: #1a1e23;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.rsvp-enquiry__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.rsvp-enquiry__heading {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.05rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rsvp-enquiry__text {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.rsvp-enquiry__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.rsvp-enquiry__cta:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.rsvp-legal {
  background: #eceff1;
  color: #6b7280;
  padding: 18px 0;
}

.rsvp-legal__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.rsvp-legal__copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.rsvp-legal__links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.rsvp-legal__links a {
  color: #6b7280;
  text-decoration: none;
}

.rsvp-legal__links a:hover {
  color: #111;
  text-decoration: underline;
}

/* Modal leftovers unused — keep form styles */

/* Modal */
.rsvp-modal[hidden] {
  display: none !important;
}

.rsvp-modal {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: grid;
  place-items: center;
  padding: 18px;
}

.rsvp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 12, 0.72);
}

.rsvp-modal__panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 28px 28px 24px;
  border-radius: 4px;
  background: #f3f4f5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.rsvp-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: transparent;
  padding: 0;
}

.rsvp-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b6b6b;
}

.rsvp-form label em {
  color: #d92d20;
  font-style: normal;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  min-height: 40px;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.28);
  border-radius: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--rsvp-ink);
  background: transparent;
  appearance: none;
}

.rsvp-form select {
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% + 2px), calc(100% - 7px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-bottom-color: var(--rsvp-brand);
}

.rsvp-form__full {
  grid-column: 1 / -1;
}

.rsvp-form__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.rsvp-form__status.is-error {
  background: #fee2e2;
  color: #991b1b;
}

.rsvp-form__status.is-ok {
  background: #d1fae5;
  color: #065f46;
}

.rsvp-form .rsvp-btn {
  grid-column: 1 / -1;
  margin-top: 8px;
  max-width: 220px;
}

@media (max-width: 560px) {
}

html.rsvp-modal-open {
  overflow: hidden;
}

/* Archive keep readable under site chrome */
.post-type-archive-moxie_event .moxie-ai {
  display: none !important;
}

.screen-reader-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
