/* Start custom CSS for html, class: .elementor-element-170bd86 */:root {
  --purple-950: #12081f;
  --purple-900: #1d0d30;
  --purple-800: #2f1748;
  --purple-700: #462565;
  --lime: #acd94d;
  --yellow: #f2d34f;
  --blue: #48b9db;
  --orange: #ef8b45;
  --mint: #8fd2b3;
  --white: #ffffff;
  --surface: #f5f3f7;
  --ink: #21172a;
  --muted: #6c6471;
  --line: #e5e0e8;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(18, 8, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--purple-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  padding: 12px 20px 0;
  background: var(--surface);
}

.header-inner {
  display: flex;
  width: min(1180px, 100%);
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 16px 24px 16px 32px;
  color: var(--white);
  background: var(--purple-800);
  border-bottom: 4px solid var(--lime);
  box-shadow: 0 14px 34px rgba(18, 8, 31, 0.2);
}

.main-logo {
  width: 220px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
}

.navigation > a:not(.header-button):hover {
  color: var(--lime);
}

.header-button {
  padding: 13px 20px;
  color: var(--purple-950);
  background: var(--lime);
  border-radius: 12px;
}

/* Hero */

.hero {
  margin-top: 20px;
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(172, 217, 77, 0.12),
      transparent 27%
    ),
    linear-gradient(135deg, var(--purple-950), var(--purple-800));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 17px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.umbrella-section h2,
.hours-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.hero-description {
  max-width: 680px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-light {
  color: var(--purple-950);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Wide department logo panels */

.department-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.department-tile {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 23px;
  border-radius: 19px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.department-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
}

.department-tile img {
  width: 100%;
  height: 67px;
  object-fit: contain;
  object-position: left center;
}

.department-tile span {
  margin-top: 12px;
  color: var(--purple-950);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile-jumperama {
  background: var(--mint);
}

.tile-junglerama {
  background: var(--lime);
}

.tile-cyberpunk {
  background: var(--yellow);
}

.tile-clip {
  background: var(--orange);
}

.tile-sports {
  grid-column: 1 / -1;
  min-height: 125px;
  background: #765b93;
}

.tile-sports img {
  max-width: 280px;
}

.tile-sports span {
  color: var(--white);
}

/* Umbrella message */

.umbrella-section {
  padding: 95px 0;
  background: var(--white);
}

.umbrella-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.umbrella-section .section-label {
  color: var(--purple-700);
}

.umbrella-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.umbrella-copy p:first-child {
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--purple-700);
  font-weight: 900;
}

/* Hours */

.hours-section {
  padding: 95px 0;
  color: var(--white);
  background: var(--purple-950);
}

.hours-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}

.hours-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.section-label-light {
  color: var(--lime);
}

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

.hours-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(250px, 1.3fr);
  min-height: 320px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hours-card:last-child {
  grid-column: 1 / -1;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: var(--card-colour);
}

.card-logo img {
  width: 100%;
  max-width: 230px;
  height: 105px;
  object-fit: contain;
}

.card-content {
  display: flex;
  flex-direction: column;
  padding: 29px;
}

.card-jumperama {
  --card-colour: var(--mint);
  --card-accent: #317c64;
}

.card-junglerama {
  --card-colour: var(--lime);
  --card-accent: #567f14;
}

.card-cyberpunk {
  --card-colour: var(--yellow);
  --card-accent: #947400;
}

.card-clip {
  --card-colour: var(--orange);
  --card-accent: #a64b13;
}

.card-sports {
  --card-colour: #765b93;
  --card-accent: var(--purple-700);
}

.activity-type {
  margin: 0 0 2px;
  color: var(--card-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-card h3 {
  margin: 0 0 20px;
  color: var(--purple-800);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hours-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.hours-card dl div {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  color: var(--muted);
  font-size: 13px;
}

.hours-card dd {
  margin: 1px 0 0;
  font-weight: 900;
}

.hours-card .card-content > a {
  margin-top: auto;
  color: var(--card-accent);
  font-weight: 900;
}

.hours-note {
  max-width: 850px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-align: center;
}

/* Final CTA — no footer */

.final-cta {
  padding: 85px 0;
  color: var(--white);
  background: var(--purple-800);
  border-top: 4px solid var(--lime);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.final-cta h2 {
  max-width: 750px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.final-cta p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

/* Responsive */

@media (max-width: 1000px) {
  .navigation > a:not(.header-button) {
    display: none;
  }

  .hero-layout,
  .umbrella-layout,
  .hours-heading,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 55px;
  }

  .umbrella-layout,
  .hours-heading {
    gap: 35px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hours-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 8px 8px 0;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 14px;
  }

  .main-logo {
    width: 150px;
  }

  .header-button {
    padding: 10px 12px;
    font-size: 11px;
  }

  .hero,
  .umbrella-section,
  .hours-section,
  .final-cta {
    padding: 70px 0;
  }

  .hero h1,
  .umbrella-section h2,
  .hours-section h2,
  .final-cta h2 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .department-tile,
  .tile-sports {
    grid-column: auto;
    min-height: 125px;
  }

  .department-tile img {
    max-width: 260px;
  }

  .hours-card {
    grid-template-columns: 1fr;
  }

  .card-logo {
    min-height: 180px;
  }

  .card-logo img {
    max-width: 260px;
    height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}/* End custom CSS */