:root {
  --zy-ink: #101112;
  --zy-paper: #f1eee8;
  --zy-paper-deep: #e3ded5;
  --zy-orange: #f25a09;
  --zy-water: #a7b6b6;
  --zy-line: rgba(16, 17, 18, 0.18);
  --zy-white-line: rgba(255, 255, 255, 0.3);
  --zy-header-height: 78px;
  --zy-max: 1440px;
}

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

html {
  background: var(--zy-paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zy-ink);
  background: var(--zy-paper);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

img {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--zy-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 0.75rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--zy-ink);
  background: var(--zy-orange);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.locale-text {
  display: none;
}

html[data-locale="nl"] .locale-text[data-locale="nl"],
html[data-locale="en"] .locale-text[data-locale="en"],
html[data-locale="de"] .locale-text[data-locale="de"] {
  display: inline;
}

.eyebrow,
.footer-label,
.slide-count,
.image-caption,
.hero-status,
.location-facts,
.step-number,
.menu-kicker,
.menu-index,
.carousel-index,
.hero-scroll-note,
.language-switch,
.company-facts,
.corporate-facts {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--zy-orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button--orange:hover {
  background: #ff6d1e;
}

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

.button--white:hover {
  color: var(--zy-paper);
  background: var(--zy-orange);
}

.button--outline-dark {
  color: var(--zy-ink);
  border-color: rgba(16, 17, 18, 0.35);
  background: transparent;
}

.button--outline-dark:hover {
  color: var(--zy-paper);
  border-color: var(--zy-ink);
  background: var(--zy-ink);
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--zy-orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--zy-header-height);
  padding: 0 1.5rem;
  color: #fff;
  background: rgba(16, 17, 18, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.menu-trigger,
.site-header__cta,
.menu-close,
.carousel-arrow,
.carousel-progress button,
.language-switch button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  color: inherit;
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-trigger__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 1.3rem;
}

.menu-trigger__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header__logo {
  display: block;
  width: clamp(8.8rem, 15vw, 13.5rem);
}

.site-header__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.54);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.site-header__cta:hover {
  color: var(--zy-ink);
  background: var(--zy-paper);
}

.header-arrow {
  color: var(--zy-orange);
  font-size: 1rem;
}

.site-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--zy-ink);
  background: var(--zy-paper);
  border: 0;
}

.site-menu::backdrop {
  background: rgba(16, 17, 18, 0.72);
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  max-width: var(--zy-max);
  min-height: 100%;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem) 2rem;
}

.site-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--zy-line);
}

.site-menu__logo {
  width: clamp(8.8rem, 15vw, 13.5rem);
}

.site-menu__logo img {
  width: 100%;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  color: var(--zy-ink);
  background: transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-close span:first-child {
  color: var(--zy-orange);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 0.5;
}

.site-menu__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 920px);
  padding: clamp(2rem, 7vh, 5rem) 0;
}

.menu-kicker {
  margin: 0 0 1rem;
  color: var(--zy-orange);
}

.site-menu h2 {
  max-width: 10ch;
  margin: 0 0 clamp(1.75rem, 4vw, 3.25rem);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.9rem, 7vw, 7.7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  border-top: 1px solid var(--zy-line);
}

.menu-nav a {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  min-height: 4.3rem;
  border-bottom: 1px solid var(--zy-line);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  padding-left: 0.45rem;
  color: var(--zy-orange);
}

.menu-index {
  color: rgba(16, 17, 18, 0.48);
  font-size: 0.68rem;
}

.external-mark {
  color: var(--zy-orange);
  font-size: 1.15rem;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-top: 2rem;
}

.language-switch {
  display: flex;
  gap: 0.75rem;
}

.language-switch button {
  padding: 0;
  color: rgba(16, 17, 18, 0.48);
  background: transparent;
  font-size: 0.72rem;
}

.language-switch button[aria-pressed="true"] {
  color: var(--zy-ink);
  text-decoration: underline;
  text-decoration-color: var(--zy-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.menu-email {
  color: var(--zy-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--zy-ink);
  isolation: isolate;
}

.home-hero__video,
.home-hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__video {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.home-hero__wash {
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 11, 0.32) 0%, rgba(8, 10, 11, 0.12) 38%, rgba(8, 10, 11, 0.66) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: center;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 5rem 1.5rem 7rem;
  text-align: center;
}

.home-hero__logo {
  width: clamp(12rem, 33vw, 25rem);
  filter: brightness(0) invert(1);
}

.home-hero__content p {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
}

.hero-scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 1.75rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.hero-scroll-note__line {
  display: block;
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), var(--zy-orange));
}

.experience-carousel {
  position: relative;
  height: calc(var(--slide-count) * 100svh);
  color: #fff;
  background: var(--zy-ink);
}

.carousel-sticky {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.carousel-media,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: scale(1.04);
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-slide__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 11, 12, 0.77) 0%, rgba(10, 11, 12, 0.31) 48%, rgba(10, 11, 12, 0.12) 100%), linear-gradient(0deg, rgba(10, 11, 12, 0.6) 0%, transparent 53%);
}

.carousel-slide__content {
  position: absolute;
  z-index: 2;
  bottom: clamp(4.5rem, 12vh, 8.5rem);
  left: clamp(1.25rem, 7vw, 7rem);
  max-width: min(52rem, 70vw);
}

.slide-count {
  margin: 0 0 1rem;
  color: var(--zy-orange);
}

.slide-count span {
  color: rgba(255, 255, 255, 0.56);
}

.carousel-slide h2 {
  max-width: 9ch;
  margin: 0 0 1.15rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.65rem, 6.6vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.carousel-slide__content > p:not(.slide-count) {
  max-width: 39rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.35;
}

.carousel-controls {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1rem, 3vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transform: translateY(-50%);
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  color: #fff;
  background: rgba(16, 17, 18, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 1rem;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover {
  color: var(--zy-ink);
  background: var(--zy-orange);
}

.carousel-progress {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.carousel-progress button {
  width: 2.4rem;
  height: 0.45rem;
  padding: 0;
  background: transparent;
}

.carousel-progress button span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.32);
  transition: background-color 180ms ease, transform 180ms ease;
}

.carousel-progress button[aria-selected="true"] span {
  background: var(--zy-orange);
  transform: scaleX(1.12);
  transform-origin: left;
}

.carousel-index {
  position: absolute;
  z-index: 5;
  right: clamp(1.25rem, 3vw, 3.5rem);
  bottom: 1.6rem;
  display: flex;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.64);
}

.carousel-index span:first-child {
  color: var(--zy-orange);
}

.carousel-beats {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.carousel-beat {
  display: block;
  height: 100svh;
}

.home-intro,
.corporate-intro,
.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  max-width: var(--zy-max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.home-intro h2,
.corporate-intro h2,
.company-intro h2,
.section-heading h2,
.faq-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.25rem, 5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.home-intro > p,
.corporate-intro .corporate-copy,
.company-intro h2 {
  color: rgba(16, 17, 18, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.event-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 42rem;
  color: #fff;
  background: var(--zy-ink);
}

.event-section--compact {
  min-height: 34rem;
}

.event-section__image {
  position: relative;
  min-height: 28rem;
}

.event-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 1.15rem;
  left: 1.35rem;
  color: rgba(255, 255, 255, 0.75);
}

.event-section__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem);
}

.event-section__content h2 {
  max-width: 12ch;
  margin: 0 0 1.5rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.35rem, 5vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.89;
  text-transform: uppercase;
}

.event-section__content > p {
  max-width: 35rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.event-services {
  display: grid;
  gap: 0;
  margin: 0 0 2.3rem;
  border-top: 1px solid var(--zy-white-line);
}

.event-services > div {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.4rem;
  border-bottom: 1px solid var(--zy-white-line);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-services strong,
.event-services small {
  color: var(--zy-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 400;
}

.event-services small {
  color: rgba(255, 255, 255, 0.55);
}

.event-section__content .button {
  align-self: flex-start;
}

.location-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 43rem;
  overflow: hidden;
  background: var(--zy-paper-deep);
}

.location-section--compact {
  min-height: 34rem;
}

.location-image {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-image__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(227, 222, 213, 0.35));
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem);
  background: rgba(241, 238, 232, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.location-content h2 {
  max-width: 8ch;
  margin: 0 0 1.5rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.5rem, 5.7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.location-lead {
  max-width: 33rem;
  margin: 0 0 2.25rem;
  color: rgba(16, 17, 18, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.25rem;
  max-width: 28rem;
  margin-bottom: 2.3rem;
  color: rgba(16, 17, 18, 0.65);
  font-size: 0.68rem;
}

.location-facts span:first-child {
  color: var(--zy-ink);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 8vw, 9rem);
  max-width: var(--zy-max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.faq-heading,
.faq-list {
  min-width: 0;
}

.faq-heading h2 {
  max-width: 100%;
  margin-bottom: 1.1rem;
  font-size: clamp(2.15rem, 3.7vw, 4.4rem);
  overflow-wrap: anywhere;
}

.faq-heading > p:last-child {
  max-width: 20rem;
  margin: 0;
  color: rgba(16, 17, 18, 0.62);
  font-size: 1rem;
}

.faq-list {
  border-top: 1px solid var(--zy-line);
}

.faq-item {
  border-bottom: 1px solid var(--zy-line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.faq-item summary > span:first-child {
  min-width: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--zy-orange);
  font-size: 1.65rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 44rem;
  padding: 0 3rem 1.7rem 0;
  color: rgba(16, 17, 18, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem) 1.25rem;
  color: var(--zy-ink);
  background: var(--zy-paper);
  border-top: 1px solid var(--zy-line);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--zy-max);
  margin: 0 auto;
}

.footer-brand {
  max-width: 29rem;
}

.footer-brand img {
  width: clamp(12rem, 22vw, 19rem);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 22rem;
  margin: 0;
  color: rgba(16, 17, 18, 0.62);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: clamp(2rem, 7vw, 7rem);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-label {
  margin: 0 0 0.6rem;
  color: var(--zy-orange);
}

.footer-links a {
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--zy-orange);
}

.footer-bottom {
  flex-wrap: wrap;
  margin-top: clamp(4rem, 11vw, 10rem);
  padding-top: 1.25rem;
  color: rgba(16, 17, 18, 0.54);
  border-top: 1px solid var(--zy-line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(88svh, 55rem);
  overflow: hidden;
  color: #fff;
  background: var(--zy-ink);
}

.page-hero__image,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.05);
}

.page-hero__overlay {
  background: linear-gradient(90deg, rgba(10, 11, 12, 0.76), rgba(10, 11, 12, 0.18) 70%), linear-gradient(0deg, rgba(10, 11, 12, 0.72), transparent 62%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--zy-max));
  margin: 0 auto;
  padding: clamp(7rem, 15vh, 11rem) clamp(1.25rem, 7vw, 7rem) clamp(4rem, 9vw, 8rem);
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0 0 1.3rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.3rem, 8.6vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-status {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.55rem 0.7rem;
  color: var(--zy-ink);
  background: var(--zy-orange);
}

.hero-intro {
  max-width: 39rem;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.hero-scroll-note--home {
  bottom: 1.5rem;
}

.category-overview,
.corporate-intro,
.corporate-steps,
.company-intro,
.related-section {
  max-width: var(--zy-max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.category-overview {
  max-width: none;
  color: #fff;
  background: var(--zy-ink);
}

.category-overview > * {
  max-width: var(--zy-max);
  margin-right: auto;
  margin-left: auto;
}

.category-overview .section-heading h2,
.category-overview .eyebrow {
  color: #fff;
}

.category-overview .eyebrow {
  color: var(--zy-orange);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 13ch;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  color: #fff;
  background: #27292a;
}

.category-card__image,
.category-card__shade {
  position: absolute;
  inset: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.category-card:hover .category-card__image img {
  transform: scale(1.06);
}

.category-card__shade {
  background: linear-gradient(180deg, rgba(10, 11, 12, 0.05), rgba(10, 11, 12, 0.78));
}

.category-card__meta,
.category-card__content {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  left: 1.25rem;
}

.category-card__meta {
  top: 1.25rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card__meta span:first-child {
  color: var(--zy-orange);
}

.category-card__content {
  bottom: 1.45rem;
}

.category-card__content h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.category-card__content p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.4;
}

.corporate-intro {
  padding-bottom: 3rem;
}

.corporate-copy p {
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.corporate-steps {
  display: grid;
  gap: 1rem;
  padding-top: 3rem;
}

.corporate-steps article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--zy-line);
}

.corporate-steps article:last-child {
  border-bottom: 1px solid var(--zy-line);
}

.corporate-steps__image {
  aspect-ratio: 1.55;
  overflow: hidden;
}

.corporate-steps__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  color: var(--zy-orange);
}

.corporate-steps h3 {
  max-width: 12ch;
  margin: 0.9rem 0 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.corporate-steps p {
  max-width: 28rem;
  margin: 0;
  color: rgba(16, 17, 18, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.corporate-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--zy-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(4.5rem, 10vw, 8rem);
}

.corporate-facts > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1rem 1.1rem 0;
  border-top: 1px solid var(--zy-line);
}

.corporate-facts strong {
  color: var(--zy-orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.75rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.corporate-facts span {
  color: rgba(16, 17, 18, 0.64);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.company-intro {
  align-items: center;
}

.company-intro__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13rem;
  padding: 2rem;
  background: #dce2de;
}

.company-intro__brand img {
  width: min(75%, 18rem);
  max-height: 8rem;
  object-fit: contain;
}

.company-intro h2 {
  max-width: 17ch;
  margin-bottom: 1.6rem;
  color: var(--zy-ink);
  font-size: clamp(1.8rem, 3.4vw, 3.7rem);
  line-height: 0.98;
  text-transform: none;
}

.company-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin-bottom: 1.75rem;
  color: rgba(16, 17, 18, 0.58);
  font-size: 0.65rem;
}

.company-facts span::before {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.5rem;
  content: "";
  background: var(--zy-orange);
  border-radius: 50%;
}

.company-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0 clamp(1.25rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background: var(--zy-paper);
}

.gallery-image {
  min-height: 27rem;
  margin: 0;
  overflow: hidden;
}

.gallery-image--1 {
  grid-column: span 7;
}

.gallery-image--2 {
  grid-column: span 5;
  margin-top: 4rem;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-section {
  max-width: none;
  background: var(--zy-ink);
}

.related-section > * {
  max-width: var(--zy-max);
  margin-right: auto;
  margin-left: auto;
}

.related-section .eyebrow {
  color: var(--zy-orange);
}

.related-section h2 {
  color: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 0.83;
  overflow: hidden;
  color: #fff;
  background: #2a2c2c;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 450ms ease, opacity 450ms ease;
}

.related-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 17, 18, 0.8), transparent 68%);
}

.related-card:hover img {
  opacity: 0.88;
  transform: scale(1.05);
}

.related-card span,
.related-card small {
  position: absolute;
  z-index: 2;
  right: 1rem;
  left: 1rem;
}

.related-card span {
  bottom: 2.25rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.related-card small {
  bottom: 0.9rem;
  color: var(--zy-orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 1rem;
  }

  .menu-nav {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .corporate-intro,
  .company-intro,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .event-section__image {
    min-height: 24rem;
  }

  .location-image {
    min-height: 25rem;
  }

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

  .category-card:last-child {
    grid-column: span 2;
  }

  .corporate-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  :root {
    --zy-header-height: 66px;
  }

  .site-header__logo {
    width: 8.25rem;
  }

  .menu-trigger__label,
  .site-header__cta > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-header__cta {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .header-arrow {
    font-size: 1.1rem;
  }

  .site-menu__inner {
    padding: 1rem 1.15rem 1.5rem;
  }

  .site-menu h2 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .menu-nav a {
    min-height: 3.6rem;
    font-size: 1rem;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero__content {
    padding-top: 4rem;
  }

  .home-hero__content p {
    max-width: 18rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .carousel-slide__content {
    right: 1.25rem;
    bottom: 5.25rem;
    left: 1.25rem;
    max-width: none;
  }

  .carousel-slide h2 {
    max-width: 8ch;
    font-size: clamp(2.75rem, 15vw, 5.6rem);
  }

  .carousel-slide__content > p:not(.slide-count) {
    max-width: 20rem;
    font-size: 0.96rem;
  }

  .carousel-controls {
    top: auto;
    right: 1.25rem;
    bottom: 4.8rem;
    flex-direction: row;
    transform: none;
  }

  .carousel-progress {
    flex-direction: row;
    flex-wrap: wrap;
    width: 7rem;
    gap: 0.35rem;
  }

  .carousel-progress button {
    width: 1.25rem;
  }

  .carousel-arrow {
    width: 1.9rem;
    height: 1.9rem;
  }

  .carousel-index {
    right: 1.25rem;
    bottom: 1.35rem;
  }

  .home-intro,
  .corporate-intro,
  .corporate-steps,
  .company-intro,
  .related-section,
  .category-overview,
  .faq-section {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .event-section__content {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .location-content {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .location-facts {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:last-child {
    grid-column: auto;
    min-height: 26rem;
  }

  .corporate-steps article {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .corporate-steps__image {
    aspect-ratio: 1.4;
  }

  .corporate-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .company-gallery {
    grid-template-columns: 1fr;
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .gallery-image,
  .gallery-image--1,
  .gallery-image--2 {
    grid-column: auto;
    min-height: 20rem;
    margin-top: 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-hero__video {
    display: none;
  }

  .home-hero {
    background: url("video/zuidyard-hero-poster.jpg") center / cover no-repeat;
  }
}
