/* Start custom CSS for html, class: .elementor-element-26ab044 */:root {
  --purple-950: #100719;
  --purple-900: #170a26;
  --purple-850: #211032;
  --purple-800: #2d1748;
  --purple-700: #3d235e;
  --purple-500: #6f4a8d;
  --lavender: #eee7f4;
  --lavender-2: #f7f3fa;
  --pink: #f24b85;
  --pink-dark: #e52e70;
  --ink: #28133f;
  --text: #4f4660;
  --muted: #786f82;
  --white: #ffffff;
  --line: rgba(45, 23, 72, 0.12);
  --shadow: 0 26px 70px rgba(31, 15, 49, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font: "Inter", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--purple-900);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
iframe {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(4.2rem, 9.3vw, 8rem);
}

h2 {
  font-size: clamp(3rem, 6.2vw, 5.2rem);
}

h3 {
  font-size: 2rem;
}

.page-width {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Fixed Vimeo background */

.page-video {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--purple-900);
  pointer-events: none;
}

.page-video::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(16, 7, 25, 0.2),
      rgba(16, 7, 25, 0.46)
    );
  content: "";
}

.page-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(177.78vh, 100vw);
  height: max(56.25vw, 100vh);
  border: 0;
  opacity: 0.84;
  transform: translate(-50%, -50%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

/* Header */

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1120px, 100%);
  min-height: 82px;
  margin-inline: auto;
  padding: 14px 20px;
  border-bottom: 3px solid var(--pink);
  background: rgba(45, 23, 72, 0.96);
  box-shadow: 0 14px 36px rgba(16, 7, 25, 0.25);
}

.brand {
  display: block;
  width: 225px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pink);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-pink {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  box-shadow: 0 12px 28px rgba(242, 75, 133, 0.28);
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--lavender-2);
}

.button-header {
  min-height: 48px;
  padding-inline: 20px;
  white-space: nowrap;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 7, 25, 0.96) 0%,
      rgba(27, 10, 43, 0.83) 48%,
      rgba(23, 10, 38, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(16, 7, 25, 0.55) 0%,
      rgba(16, 7, 25, 0.16) 45%,
      rgba(16, 7, 25, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 900px;
  padding-top: 170px;
  padding-bottom: 62px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.pill-purple {
  color: var(--purple-700);
  border-color: rgba(61, 35, 94, 0.15);
  background: var(--lavender);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(45, 23, 72, 0.68);
  backdrop-filter: blur(14px);
}

.fact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px;
}

.fact + .fact {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.fact-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--pink);
  font-weight: 900;
}

.fact strong,
.fact small {
  display: block;
}

.fact strong {
  color: var(--white);
  font-size: 0.98rem;
}

.fact small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

/* Shared sections */

.section {
  padding: 54px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading-centred {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading-centred .pill {
  align-self: center;
}

.section-heading p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.location-section,
.parking-section,
.arrival-section,
.departments-section,
.ready-section {
  background: transparent;
}

.location-section > .page-width,
.arrival-section > .page-width {
  padding: 72px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

/* Location and map */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.map-card,
.address-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.map-card {
  min-height: 590px;
  background: var(--lavender);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
}

.address-card {
  display: flex;
  flex-direction: column;
  padding: 38px;
  color: var(--white);
  background: var(--purple-800);
}

.card-kicker {
  margin-bottom: 18px;
  color: var(--purple-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kicker-light {
  color: rgba(255, 255, 255, 0.62);
}

.address-card h3 {
  color: var(--white);
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.address {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.address-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.address-card .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.contact-line {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-align: center;
}

.contact-line a {
  color: var(--white);
  font-weight: 900;
}

/* Parking */

.parking-banner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 190px;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(
    135deg,
    rgba(45, 23, 72, 0.97),
    rgba(61, 35, 94, 0.95)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.parking-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  font-size: 2.8rem;
  font-weight: 900;
}

.parking-banner h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.3rem);
}

.parking-banner p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.arrival-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.arrival-time strong {
  color: var(--white);
  font-size: 5.5rem;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.arrival-time span {
  color: var(--white);
  font-weight: 900;
}

.arrival-time small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
}

.parking-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.info-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--pink);
  font-weight: 900;
}

.info-card h3 {
  font-size: 1.8rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Arrival instructions */

.arrival-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 72px;
  align-items: center;
}

.arrival-copy h2 {
  max-width: 680px;
}

.lead-copy {
  max-width: 690px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.08rem;
}

.route-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.route-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.route-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--purple-700);
  font-weight: 900;
}

.route-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.03rem;
}

.route-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.mistakes-card {
  padding: 38px;
  border: 1px solid rgba(242, 75, 133, 0.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff7fa, #f9f2fb);
  box-shadow: var(--shadow);
}

.mistakes-card h3 {
  font-size: 2.8rem;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 0 17px 31px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

/* Departments */

.departments-section {
  color: var(--white);
}

.departments-section > .page-width {
  padding: 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 14% 15%,
      rgba(242, 75, 133, 0.18),
      transparent 27%
    ),
    rgba(33, 16, 50, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.department-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  min-height: 440px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: var(--text);
  background: var(--white);
}

.department-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.department-logo {
  display: grid;
  width: 100%;
  height: 102px;
  margin-bottom: 24px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--purple-800);
}

.department-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 68px;
  object-fit: contain;
}

.logo-square img {
  max-width: 64px;
  max-height: 64px;
}

.logo-tall img {
  max-width: 52px;
  max-height: 74px;
}

.department-type {
  margin-bottom: 8px;
  color: var(--purple-500);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.department-card h3 {
  font-size: 2.1rem;
}

.department-card > p:not(.department-type) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.department-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--pink-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

/* Final call to action */

.ready-section {
  padding-bottom: 90px;
}

.ready-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ready-card h2 {
  margin-bottom: 14px;
}

.ready-card p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.ready-actions {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.text-link {
  color: var(--purple-700);
  font-size: 0.84rem;
  font-weight: 900;
}

/* Footer */

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--purple-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 38px;
  align-items: center;
}

.footer-brand {
  display: block;
  width: 220px;
  line-height: 0;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--pink);
}

/* Tablet */

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .location-grid,
  .arrival-layout {
    grid-template-columns: 1fr;
  }

  .arrival-layout {
    gap: 36px;
  }

  .parking-banner {
    grid-template-columns: 76px 1fr;
  }

  .parking-icon {
    width: 76px;
    height: 76px;
  }

  .arrival-time {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
    align-items: baseline;
    justify-content: center;
  }

  .arrival-time strong {
    font-size: 3.4rem;
  }

  .department-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .department-card,
  .department-card:nth-child(4) {
    grid-column: auto;
  }

  .ready-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ready-actions {
    justify-items: start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .page-width {
    width: min(100% - 30px, 1120px);
  }

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

  .header-inner {
    min-height: 68px;
    padding: 11px 14px;
  }

  .brand {
    width: 180px;
  }

  .button-header {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 135px;
    padding-bottom: 30px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .fact + .fact {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .section {
    padding: 28px 0;
  }

  .location-section > .page-width,
  .arrival-section > .page-width,
  .departments-section > .page-width {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .map-card,
  .map-card iframe {
    min-height: 390px;
  }

  .address-card,
  .mistakes-card {
    padding: 28px;
  }

  .parking-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .arrival-time {
    grid-column: auto;
    grid-template-columns: auto auto;
  }

  .arrival-time small {
    grid-column: 1 / -1;
  }

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

  .department-card {
    min-height: 395px;
  }

  .ready-card {
    padding: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Accessibility: remove the moving background if motion is reduced */

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

  .page-video {
    display: none;
  }

  .button {
    transition: none;
  }
}/* End custom CSS */