/* Sport Planet – design system */

:root {
  --sp-accent: #fb4f19;
  --sp-accent-hover: #e04412;
  --sp-accent-soft: rgba(251, 79, 25, 0.08);
  --sp-black: #0a0a0a;
  --sp-text: #1a1a1a;
  --sp-muted: #6b6b6b;
  --sp-border: #e8e8e8;
  --sp-bg: #ffffff;
  --sp-bg-soft: #fafafa;
  --sp-bg-warm: #fff8f5;
  --sp-radius: 12px;
  --sp-radius-lg: 20px;
  --sp-max: 1180px;
  --sp-topbar-h: 40px;
  --sp-header-h: 72px;
  --sp-site-header: calc(var(--sp-topbar-h) + var(--sp-header-h));
  --sp-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --sp-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --sp-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 20px 40px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sp-text);
  background: var(--sp-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.sp-container {
  width: min(100% - 2rem, var(--sp-max));
  margin-inline: auto;
}

.sp-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-accent);
  margin: 0 0 0.75rem;
}

.sp-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sp-black);
  margin: 0;
}

.sp-section-lead {
  font-size: 1.05rem;
  color: var(--sp-muted);
  max-width: 52ch;
  margin: 1rem 0 0;
  line-height: 1.7;
}

/* Header */
.sp-header {
  position: fixed;
  top: var(--sp-topbar-h);
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.sp-header__bar {
  height: var(--sp-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sp-header--hero {
  background: transparent;
}

.sp-header--hero .sp-logo,
.sp-header--hero .sp-nav-link,
.sp-header--hero .sp-header__phone {
  color: #fff;
}

.sp-header--hero .sp-nav-link::after {
  display: none;
}

.sp-header--solid,
body.sp-header-light .sp-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sp-border);
}

.sp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.sp-logo__img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .sp-logo__img {
    height: 38px;
    max-width: 210px;
  }
}

.sp-logo--footer .sp-logo__img {
  filter: brightness(0) invert(1);
}

.sp-header--hero .sp-logo__img {
  filter: brightness(0) invert(1);
}

.sp-header--solid .sp-logo__img {
  filter: none;
}

.sp-header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--sp-text);
}

.sp-header__phone i {
  font-size: 0.8125rem;
  opacity: 0.7;
}

.sp-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.sp-nav .sp-nav-link,
.sp-mobile-nav .sp-nav-link {
  display: inline-block;
}

@media (min-width: 1024px) {
  .sp-nav {
    display: flex;
  }
}

.sp-nav .menu-item,
.sp-mobile-nav .menu-item,
.sp-footer__links--nav .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}

.sp-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--sp-text);
  transition: color var(--sp-transition);
}

.sp-nav-link:hover,
.sp-nav-link:focus-visible {
  color: var(--sp-accent);
}

.sp-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sp-header__phone {
    display: inline-flex;
  }
}

.sp-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .sp-menu-toggle {
    display: none;
  }
}

.sp-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--sp-transition), opacity var(--sp-transition);
}

.sp-header--hero .sp-menu-toggle {
  color: #fff;
}

body.sp-header-light .sp-menu-toggle {
  color: var(--sp-black);
}

.sp-mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--sp-site-header);
  background: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 99;
}

@media (min-width: 1024px) {
  .sp-mobile-nav {
    display: none !important;
  }
}

.sp-mobile-nav.is-open {
  transform: translateX(0);
}

.sp-mobile-nav .sp-nav-link {
  font-size: 1.25rem;
}

/* Buttons */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--sp-transition), transform var(--sp-transition), box-shadow var(--sp-transition);
}

.sp-btn--accent {
  background: var(--sp-accent);
  color: #fff;
}

.sp-btn--accent:hover,
.sp-btn--accent:focus-visible {
  background: var(--sp-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(251, 79, 25, 0.25);
}

.sp-btn--outline {
  background: transparent;
  color: var(--sp-black);
  border: 1.5px solid var(--sp-border);
}

.sp-btn--outline:hover {
  border-color: var(--sp-black);
}

.sp-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.sp-btn--full {
  width: 100%;
}

/* Hero */
.sp-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: var(--sp-site-header);
}

.sp-hero__media {
  position: absolute;
  inset: 0;
}

.sp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.sp-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  color: #fff;
}

.sp-hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: 12ch;
}

.sp-hero__title em {
  font-style: normal;
  color: var(--sp-accent);
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .sp-hero__stats {
    gap: 4rem;
  }
}

.sp-hero__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sp-hero__stat span {
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* Sections */
.sp-section {
  padding: 5rem 0;
}

.sp-section--soft {
  background: var(--sp-bg-soft);
}

.sp-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Event cards */
.sp-events-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sp-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sp-events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.sp-event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.sp-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow-hover);
  border-color: transparent;
}

.sp-event-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sp-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sp-event-card:hover .sp-event-card__img {
  transform: scale(1.04);
}

.sp-event-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  text-align: left;
  line-height: 1.2;
  box-shadow: var(--sp-shadow);
  max-width: calc(100% - 7rem);
}

.sp-event-card__date-primary {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sp-black);
  letter-spacing: -0.01em;
}

.sp-event-card__date-secondary {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sp-accent);
  margin-top: 0.15rem;
}

.sp-event-card__price-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--sp-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--sp-shadow);
}

.sp-event-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-event-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-accent);
  margin-bottom: 0.5rem;
}

.sp-event-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Homepage event cards */
.sp-event-card--home {
  cursor: default;
}

.sp-event-card--home .sp-event-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.sp-event-card--home .sp-event-card__price-badge {
  top: 1rem;
  bottom: auto;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
}

.sp-event-card--home .sp-event-card__cta-wrap {
  padding: 0 1.25rem 1.25rem;
  margin-top: auto;
}

.sp-event-card--home .sp-event-card__body {
  padding-bottom: 1rem;
}

/* About / features */
.sp-section--features {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  background: linear-gradient(160deg, #fff8f5 0%, #ffffff 45%, #f7f7f7 100%);
}

.sp-section--features__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 79, 25, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(251, 79, 25, 0.06) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(251, 79, 25, 0.025) 48px,
      rgba(251, 79, 25, 0.025) 49px
    );
}

.sp-section--features__inner {
  position: relative;
  z-index: 1;
}

.sp-features-band {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .sp-features-band {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.sp-features-band__intro {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sp-features-band__intro {
    width: min(220px, 28%);
  }
}

.sp-section-title--compact {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.2;
}

.sp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .sp-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.sp-feature {
  padding: 0;
  background: none;
  border: none;
}

.sp-feature__num {
  font-size: clamp(1.875rem, 3.25vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--sp-accent);
  margin-bottom: 0.45rem;
  opacity: 0.35;
}

.sp-feature__title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  min-height: 2.4em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sp-feature__title span {
  display: block;
}

.sp-about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sp-about-grid {
    grid-template-columns: 1fr minmax(280px, 42%);
    gap: 4rem;
    align-items: center;
  }
}

.sp-about-grid__content {
  align-self: center;
}

.sp-about-grid__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.sp-about-grid__visual img {
  border-radius: var(--sp-radius-lg);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sp-about-grid__visual::after {
  content: "";
  position: absolute;
  inset: 1.5rem -1rem -1rem 1.5rem;
  border: 2px solid var(--sp-accent);
  border-radius: var(--sp-radius-lg);
  z-index: -1;
  opacity: 0.35;
}

/* Photo reports */
.sp-reports-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sp-reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sp-report-card {
  text-decoration: none;
  color: inherit;
  group: sp-report;
}

.sp-report-card__img {
  border-radius: var(--sp-radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.sp-report-card:hover .sp-report-card__img {
  transform: scale(1.02);
}

.sp-report-card__img-wrap {
  overflow: hidden;
  border-radius: var(--sp-radius-lg);
  margin-bottom: 1rem;
}

.sp-report-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.sp-report-card__excerpt {
  font-size: 0.875rem;
  color: var(--sp-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Contact */
.sp-contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .sp-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .sp-contact-grid__form {
    display: flex;
    align-items: center;
  }

  .sp-contact-grid__form .sp-form-card {
    width: 100%;
  }
}

.sp-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.sp-contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  text-decoration: none;
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}

.sp-contact-link:hover {
  border-color: var(--sp-accent);
  box-shadow: var(--sp-shadow);
}

.sp-contact-link__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sp-accent-soft);
  color: var(--sp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sp-contact-link__label {
  font-size: 0.8125rem;
  color: var(--sp-muted);
  margin: 0;
}

.sp-contact-link__value {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0;
  color: var(--sp-black);
}

/* Forms */
.sp-form-card {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  padding: 2rem;
}

.sp-form-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.sp-form-card__event {
  font-size: 0.875rem;
  color: var(--sp-muted);
  margin: 0 0 1.5rem;
}

.sp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-form__row {
  display: grid;
  gap: 1rem;
}

.sp-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 480px) {
  .sp-form__row--2 {
    grid-template-columns: 1fr;
  }
}

.sp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sp-field__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sp-muted);
}

.sp-field input,
.sp-field textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sp-border);
  border-radius: 10px;
  background: var(--sp-bg-soft);
  transition: border-color var(--sp-transition), background var(--sp-transition);
}

.sp-field input:focus,
.sp-field textarea:focus {
  outline: none;
  border-color: var(--sp-accent);
  background: #fff;
}

.sp-form-notice {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.sp-form-notice--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.sp-form-notice--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Archive hero */
.sp-archive-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--sp-site-header) + 3rem) 0 3rem;
  background: var(--sp-bg-soft);
  border-bottom: 1px solid var(--sp-border);
}

.sp-archive-hero--visual {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  border-bottom: none;
}

.sp-archive-hero__media {
  position: absolute;
  inset: 0;
}

.sp-archive-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-archive-hero__mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(251, 79, 25, 0.88) 0%, rgba(251, 79, 25, 0.35) 42%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.sp-archive-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  color: #fff;
}

.sp-archive-hero--visual .sp-breadcrumbs__list,
.sp-archive-hero--visual .sp-breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.75);
}

.sp-archive-hero--visual .sp-breadcrumbs__item a:hover {
  color: #fff;
}

.sp-archive-hero__eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.sp-archive-hero__lead {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.sp-archive-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0;
}

/* Breadcrumbs */
.sp-breadcrumbs {
  margin-bottom: 1.5rem;
}

.sp-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--sp-muted);
}

.sp-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  opacity: 0.5;
}

.sp-breadcrumbs__item a {
  color: var(--sp-muted);
  text-decoration: none;
  transition: color var(--sp-transition);
}

.sp-breadcrumbs__item a:hover {
  color: var(--sp-accent);
}

.sp-breadcrumbs__item:last-child span[aria-current="page"] {
  color: var(--sp-accent);
  font-weight: 600;
}

.sp-archive-hero--visual .sp-breadcrumbs__item:last-child span[aria-current="page"] {
  color: var(--sp-accent);
}

/* Single event layout */
.sp-single-layout {
  display: grid;
  gap: 3rem;
  padding-top: calc(var(--sp-site-header) + 2rem);
  padding-bottom: 2rem;
}

main.sp-main:has(> .sp-carousel-section) .sp-single-layout {
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .sp-single-layout:not(.sp-single-layout--report) {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }

  .sp-single-layout__sidebar {
    position: sticky;
    top: calc(var(--sp-site-header) + 1.5rem);
    z-index: 1;
  }
}

.sp-single-hero-img {
  border-radius: var(--sp-radius-lg);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2rem;
}

.sp-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sp-border);
}

.sp-single-meta__item {
  font-size: 0.875rem;
}

.sp-single-meta__item strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-muted);
  margin-bottom: 0.15rem;
}

.sp-event-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sp-event-section {
  padding-top: 2rem;
  border-top: 1px solid var(--sp-border);
}

.sp-event-section:first-child {
  padding-top: 0;
  border-top: none;
}

.sp-event-section__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.sp-event-section__body {
  color: var(--sp-text);
}

.sp-event-package {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.sp-event-package li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.6;
  color: var(--sp-text);
}

.sp-event-package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sp-accent);
}

.sp-event-location__name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.sp-event-location__map {
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sp-border);
  background: var(--sp-bg-soft);
  aspect-ratio: 16 / 9;
}

.sp-event-location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-single-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.sp-content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--sp-text);
}

.sp-content p {
  margin: 0 0 1.25rem;
}

.sp-content h2,
.sp-content h3 {
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

/* Footer */
.sp-footer {
  background: var(--sp-black);
  color: #fff;
  padding: 4rem 0 0;
}

.sp-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .sp-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.sp-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 36ch;
  margin: 1rem 0 0;
}

.sp-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.sp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sp-footer__links a,
.sp-footer__menu-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--sp-transition);
}

.sp-footer__links a:hover,
.sp-footer__menu-link:hover {
  color: var(--sp-accent);
}

.sp-footer__legal {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.sp-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sp-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.sp-footer__legal a:hover {
  color: #fff;
}

/* Pagination */
.sp-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.sp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sp-text);
  border: 1px solid var(--sp-border);
  transition: all var(--sp-transition);
}

.sp-pagination .page-numbers.current,
.sp-pagination .page-numbers:hover {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #fff;
}

/* 404 */
.sp-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--sp-site-header) + 2rem) 1rem 4rem;
}

.sp-404__code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--sp-accent);
  line-height: 1;
  margin: 0;
}

/* Link arrow */
.sp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sp-accent);
  text-decoration: none;
  transition: gap var(--sp-transition);
}

.sp-link-arrow:hover {
  gap: 0.6rem;
}

.sp-link-arrow::after {
  content: "→";
}

/* Main offset for fixed header pages */
main.sp-main {
  min-height: 50vh;
}

/* Legacy compat aliases */
.text-primary { color: var(--sp-text); }
.bg-primary { background: var(--sp-black); color: #fff; }
.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--sp-accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

/* Top bar */
.sp-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--sp-topbar-h);
  background: linear-gradient(90deg, #fb4f19 0%, #ff6b3d 55%, #e04412 100%);
  color: #fff;
  font-size: 0.8125rem;
}

.sp-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sp-topbar__promo,
.sp-topbar__contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.sp-topbar__label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.sp-topbar__event {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.sp-topbar__event:hover {
  text-decoration: underline;
}

.sp-topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
}

.sp-topbar__contact a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .sp-topbar__contact {
    display: none;
  }
}

/* Header CTA */
.sp-header-cta {
  display: none;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .sp-header-cta {
    display: inline-flex;
  }
}

.sp-mobile-nav .sp-header-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Footer contact icons */
.sp-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.sp-footer__contact-link i {
  width: 1rem;
  color: var(--sp-accent);
  text-align: center;
}

.sp-footer__address {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sp-footer__legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.sp-legal-cookies {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  text-decoration: none;
}

.sp-legal-cookies:hover {
  color: #fff;
}

/* Forms: GDPR */
.sp-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.sp-field--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--sp-accent);
}

.sp-field__checkbox-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--sp-muted);
}

.sp-link-accent {
  color: var(--sp-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sp-link-accent:hover {
  color: var(--sp-accent-hover);
}

/* Carousel */
.sp-carousel-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 2.5rem 0;
  margin-top: 2rem;
  background: linear-gradient(160deg, #fff8f5 0%, #ffffff 45%, #f7f7f7 100%);
}

.sp-carousel-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(251, 79, 25, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(251, 79, 25, 0.06) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(251, 79, 25, 0.025) 48px,
      rgba(251, 79, 25, 0.025) 49px
    );
}

.sp-carousel-section__inner {
  position: relative;
  z-index: 1;
}

.sp-carousel-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.sp-carousel-section__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.sp-carousel-wrap {
  position: relative;
  padding-block: 0.75rem 0.25rem;
}

.sp-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
}

.sp-carousel-track::-webkit-scrollbar {
  display: none;
}

.sp-carousel-slide {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  padding-block: 0.75rem 1.5rem;
  margin-block: -0.75rem 0;
}

.sp-carousel-slide .sp-event-card,
.sp-carousel-slide .sp-report-card {
  height: 100%;
}

.sp-carousel-track .sp-event-card,
.sp-carousel-track .sp-report-card {
  flex: none;
  width: 100%;
}

.sp-carousel-slide .sp-event-card:hover,
.sp-carousel-slide .sp-report-card:hover {
  position: relative;
  z-index: 1;
}

.sp-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sp-border);
  background: #fff;
  color: var(--sp-text);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sp-shadow);
  transition: all var(--sp-transition);
}

@media (min-width: 768px) {
  .sp-carousel-nav {
    display: flex;
  }
}

.sp-carousel-nav:hover {
  border-color: var(--sp-accent);
  color: var(--sp-accent);
}

.sp-carousel-nav--prev {
  left: -0.75rem;
}

.sp-carousel-nav--next {
  right: -0.75rem;
}

/* Report gallery */
.sp-report-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .sp-report-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.sp-report-gallery__item {
  margin: 0;
  border-radius: var(--sp-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sp-bg-soft);
}

.sp-report-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.sp-report-gallery__item:hover img {
  transform: scale(1.03);
}

.sp-single-layout--report {
  display: block;
  max-width: 760px;
  margin-inline: auto;
}

.sp-single-layout--report .sp-breadcrumbs__list {
  justify-content: center;
}

.sp-single-layout--report .sp-eyebrow,
.sp-single-layout--report .sp-single-title {
  text-align: center;
}

.sp-single-layout--report .sp-content {
  text-align: left;
}

.sp-section--archive {
  padding: 3rem 0;
}
