html,
body {
  margin: 0;
  padding: 0;
  background-color: #bcbcbc;
  font-family: "Carnas", system-ui, sans-serif;
}

#page_wrapper {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  overflow: clip;
}
#page_wrapper::before {
  position: absolute;
  z-index: 1000;
  inset: 10px;
  border-radius: 16px;
  box-shadow: 0 0 0 60px #ffffff;
  content: "";
  pointer-events: none;
}

#content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.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;
}

.orange {
  color: #eb5f00;
}

a:focus-visible,
button:focus-visible,
.person-bubble:focus-visible,
.modal-surround-bubble:focus-visible,
.modal-close-btn:focus-visible {
  outline: 3px solid #007858;
  outline-offset: 3px;
  border-radius: 4px;
}

.person-bubble:focus-visible,
.modal-surround-bubble:focus-visible {
  outline-offset: 4px;
}

.fsnav__panel a:focus-visible {
  outline-color: #fef5e3;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.fsnav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  pointer-events: none;
}
.fsnav > * {
  pointer-events: auto;
}

.fsnav__toggle {
  position: fixed;
  left: 50%;
  bottom: 4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 120, 88, 0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 38px rgba(93, 28, 62, 0.22);
  color: #ffffff;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
  transform: translateX(-50%);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .fsnav__toggle {
    background: #007858;
  }
}
.fsnav__toggle:hover, .fsnav__toggle:focus-visible {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateY(-2px);
}
.fsnav__toggle:active {
  transform: translateX(-50%) scale(0.94);
}

.fsnav__burger {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
}
.fsnav__burger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.fsnav__burger span:nth-child(1) {
  top: 0;
}
.fsnav__burger span:nth-child(2) {
  top: 5.5px;
}
.fsnav__burger span:nth-child(3) {
  top: 11px;
}

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

.fsnav--open .fsnav__burger span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.fsnav--open .fsnav__burger span:nth-child(2) {
  opacity: 0;
}
.fsnav--open .fsnav__burger span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.fsnav__panel {
  position: fixed;
  box-sizing: border-box;
  width: 100dvw;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
  background: radial-gradient(circle at 12% 12%, rgba(235, 95, 0, 0.35), transparent 42%), radial-gradient(circle at 88% 90%, rgba(0, 0, 0, 0.18), transparent 46%), #007858;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.fsnav__panel::before, .fsnav__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  animation: anniversary-badge-float 30s linear infinite;
}
.fsnav__panel::before {
  width: clamp(260px, 30vw, 480px);
  aspect-ratio: 1;
  top: -8%;
  right: -6%;
}
.fsnav__panel::after {
  width: clamp(200px, 22vw, 360px);
  aspect-ratio: 1;
  bottom: -10%;
  left: -4%;
  animation-direction: reverse;
  animation-duration: 24s;
}
.fsnav--open .fsnav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.fsnav__panel-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.fsnav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsnav__list--level1 > .fsnav__item {
  opacity: 0;
  transform: translateY(10px);
}
.fsnav__list--level1 > .fsnav__item:nth-child(1) {
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.fsnav__list--level1 > .fsnav__item:nth-child(2) {
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.fsnav__list--level1 > .fsnav__item:nth-child(3) {
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.fsnav__list--level1 > .fsnav__item:nth-child(4) {
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.fsnav__list--level1 > .fsnav__item:nth-child(5) {
  transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}
.fsnav__list--level1 > .fsnav__item:nth-child(6) {
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.fsnav__list--level1 > .fsnav__item > .fsnav__link {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.fsnav--open .fsnav__list--level1 > .fsnav__item {
  opacity: 1;
  transform: translateY(0);
}

.fsnav__item {
  margin-bottom: 0.9rem;
}

.fsnav__link {
  position: relative;
  display: inline-block;
  padding: 0.15em 0.2em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fsnav__link:hover, .fsnav__link:focus-visible {
  color: #fef5e3;
}
.fsnav__link:hover::after, .fsnav__link:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.fsnav__link--active {
  color: #fef5e3;
}
.fsnav__link--active:hover, .fsnav__link--active:focus-visible {
  color: #fef5e3;
}
.fsnav__link--active:hover::after, .fsnav__link--active:focus-visible::after {
  background-color: #fef5e3;
}

.fsnav__list--level1 > .fsnav__item:has(> .fsnav__list--level2 .fsnav__link:hover, > .fsnav__list--level2 .fsnav__link:focus-visible) > .fsnav__link:not(.fsnav__link--active) {
  color: #fef5e3;
}
.fsnav__list--level1 > .fsnav__item:has(> .fsnav__list--level2 .fsnav__link:hover, > .fsnav__list--level2 .fsnav__link:focus-visible) > .fsnav__link:not(.fsnav__link--active)::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.fsnav__list--level2 {
  margin-top: 0.3rem;
  margin-bottom: 1.4rem;
}
.fsnav__list--level2 .fsnav__item {
  display: inline-block;
  margin: 0 0.5rem 0.4rem;
}
.fsnav__list--level2 .fsnav__link {
  font-size: 1.05rem;
  font-weight: 400;
  opacity: 0.85;
}
.fsnav__list--level2 .fsnav__link:hover, .fsnav__list--level2 .fsnav__link:focus-visible {
  opacity: 1;
}

.fsnav__list--customer-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 960px;
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.2s ease, transform 0.3s ease, visibility 0.3s;
}
.fsnav__list--customer-groups .fsnav__item {
  display: block;
  min-width: 0;
  margin: 0;
}
.fsnav__list--customer-groups .fsnav__link {
  box-sizing: border-box;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 3.6rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  opacity: 1;
  text-align: left;
  overflow-wrap: anywhere;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .fsnav__list--customer-groups .fsnav__link {
    background: rgba(10, 99, 73, 0.95);
  }
}
.fsnav__list--customer-groups .fsnav__link:hover, .fsnav__list--customer-groups .fsnav__link:focus-visible {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #eb5f00;
}
.fsnav__list--customer-groups .fsnav__link.fsnav__link--active {
  border-color: rgba(254, 245, 227, 0.8);
  background-color: rgba(255, 255, 255, 0.18);
  color: #fef5e3;
  box-shadow: inset 0 0 0 1px rgba(254, 245, 227, 0.12);
}

.fsnav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  margin-left: 0.5rem;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  cursor: pointer;
  vertical-align: 0.35rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.fsnav__submenu-toggle:hover, .fsnav__submenu-toggle:focus-visible {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #eb5f00;
}

.fsnav__item--customer-groups.fsnav__item--submenu-open > .fsnav__list--customer-groups {
  max-height: 12rem;
  margin-top: 0.9rem;
  margin-bottom: 1.6rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fsnav__submenu-indicator {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.fsnav__item--customer-groups.fsnav__item--submenu-open > .fsnav__submenu-toggle .fsnav__submenu-indicator {
  transform: rotate(180deg);
}

.fsnav__customer-group-arrow {
  flex: 0 0 auto;
  font-size: 1.15rem;
  line-height: 1;
}

.fsnav__list--meta,
.fsnav__list--languages {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.fsnav__list--languages .fsnav__item {
  margin: 0 0.4rem;
}

.fsnav__list--meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.2rem;
}
.fsnav__list--meta div,
.fsnav__list--meta p {
  display: contents;
  margin: 0;
}
.fsnav__list--meta a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}
.fsnav__list--meta a:hover, .fsnav__list--meta a:focus-visible {
  color: #fef5e3;
}

.fsnav__list--languages {
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}
.fsnav__list--languages .fsnav__link {
  font-size: 1rem;
}

body.fsnav-locked {
  overflow: hidden;
}

@media (max-width: 768px) {
  .fsnav {
    padding: 1rem;
  }
  .fsnav__toggle {
    bottom: 1.5rem !important;
    left: 3rem !important;
  }
  .fsnav__panel {
    align-items: flex-start;
    padding: 5rem 1rem 6rem;
    overflow-y: auto;
  }
  .fsnav__list--customer-groups {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-width: 28rem;
  }
  .fsnav__list--customer-groups .fsnav__link {
    min-height: 3.2rem;
  }
  .fsnav__item--customer-groups.fsnav__item--submenu-open > .fsnav__list--customer-groups {
    max-height: 26rem;
  }
}
.anniversary-backdrop {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.anniversary-backdrop .frame,
.anniversary-backdrop .ce-textpic,
.anniversary-backdrop .ce-gallery,
.anniversary-backdrop .ce-outer,
.anniversary-backdrop .ce-inner,
.anniversary-backdrop .ce-row,
.anniversary-backdrop .ce-column,
.anniversary-backdrop figure,
.anniversary-backdrop p {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  margin: 0;
}
.anniversary-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  position: relative;
  z-index: 1;
}

.anniversary-logo {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 240px;
  height: 0;
  max-width: 42vw;
  margin: 10px 0 -10px 10px;
  line-height: 0;
}
.anniversary-logo .frame,
.anniversary-logo .ce-textpic,
.anniversary-logo .ce-gallery,
.anniversary-logo .ce-row,
.anniversary-logo .ce-column,
.anniversary-logo figure,
.anniversary-logo p {
  display: block;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}
.anniversary-logo img {
  width: 100%;
  height: auto;
}

.anniversary-badge {
  position: absolute;
  z-index: 1;
  width: var(--badge-width, min(300px, 34vw));
  max-width: 90vw;
  line-height: 0;
}
.anniversary-badge .frame,
.anniversary-badge .ce-textpic,
.anniversary-badge .ce-gallery,
.anniversary-badge .ce-row,
.anniversary-badge .ce-column,
.anniversary-badge figure,
.anniversary-badge p {
  display: block;
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
}
.anniversary-badge img {
  width: 100%;
  height: auto;
}
.anniversary-badge--pos0 {
  top: 1rem;
  right: 1rem;
}
.anniversary-badge--pos1 {
  top: 1rem;
  left: 1rem;
}
.anniversary-badge--pos2 {
  bottom: 1rem;
  left: -2.8rem;
  z-index: 999;
}
.anniversary-badge--pos3 {
  bottom: 3rem;
  right: 1rem;
}
.anniversary-badge--pos4, .anniversary-badge--pos5, .anniversary-badge--pos6, .anniversary-badge--pos7 {
  z-index: 0;
  width: var(--badge-width, clamp(320px, 32vw, 760px));
  animation: anniversary-badge-float 26s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.anniversary-badge--pos4 {
  top: -80px;
  left: -60px;
  width: clamp(420px, 25vw, 900px);
}
.anniversary-badge--pos5 {
  top: -80px;
  right: -130px;
}
.anniversary-badge--pos6 {
  bottom: -100px;
  left: -190px;
}
.anniversary-badge--pos7 {
  right: -190px;
  bottom: -100px;
}
.anniversary-badge.anniversary-badge--stage-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 25;
  width: var(--badge-width, 240px);
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  will-change: transform;
}

.anniversary-teaser {
  position: relative;
  z-index: 20;
}

.anniversary-footer {
  z-index: 20;
  display: flex;
  width: 98%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.anniversary-footer div,
.anniversary-footer p {
  display: contents;
  margin: 0;
}
.anniversary-footer a,
.anniversary-footer span,
.anniversary-footer button {
  color: #ffffff;
}
.anniversary-footer button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .anniversary-logo {
    width: 140px;
  }
  .anniversary-badge {
    width: min(120px, 34vw);
  }
  .anniversary-badge--pos4, .anniversary-badge--pos5, .anniversary-badge--pos6, .anniversary-badge--pos7 {
    width: clamp(200px, 60vw, 340px);
  }
  .anniversary-badge--pos4 {
    top: -50px;
    left: -80px;
  }
  .anniversary-badge--pos7 {
    right: -140px;
    bottom: -70px;
  }
  .anniversary-badge + .anniversary-badge.anniversary-badge--pos0, .anniversary-badge + .anniversary-badge.anniversary-badge--pos1 {
    top: calc(1rem + 130px);
  }
  .anniversary-badge + .anniversary-badge.anniversary-badge--pos3 {
    bottom: calc(4rem + 130px);
  }
  .anniversary-badge + .anniversary-badge.anniversary-badge--pos2 {
    left: -0.9rem;
    bottom: calc(1rem + 80px);
  }
  .anniversary-footer {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.7rem;
  }
}
@keyframes anniversary-badge-float {
  0% {
    transform: translateZ(0) translate(9px, 0px);
  }
  12.5% {
    transform: translateZ(0) translate(6px, 6px);
  }
  25% {
    transform: translateZ(0) translate(0px, 9px);
  }
  37.5% {
    transform: translateZ(0) translate(-6px, 6px);
  }
  50% {
    transform: translateZ(0) translate(-9px, 0px);
  }
  62.5% {
    transform: translateZ(0) translate(-6px, -6px);
  }
  75% {
    transform: translateZ(0) translate(0px, -9px);
  }
  87.5% {
    transform: translateZ(0) translate(6px, -6px);
  }
  100% {
    transform: translateZ(0) translate(9px, 0px);
  }
}
.customergroup {
  box-sizing: border-box;
  width: 900px;
  max-width: calc(100vw - 4rem);
  padding: 8rem 0 5rem;
  color: #ffffff;
  margin: 0 auto;
}
.customergroup--overview {
  width: 1120px;
}
.customergroup--detail {
  position: relative;
  width: 1120px;
}
.customergroup__title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.15;
  text-align: center;
}
.customergroup__text {
  font-size: 1.22rem;
  line-height: 1.55;
}
.customergroup__text a {
  color: #ffffff;
}
.customergroup__text p {
  margin: 0 0 1.25rem;
}
.customergroup__text p:last-child {
  margin-bottom: 0;
}
.customergroup__back-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.customergroup__back-link span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.customergroup__back-link:hover span:first-child, .customergroup__back-link:focus-visible span:first-child {
  border-color: #eb5f00;
  background-color: #eb5f00;
}
.customergroup__detail-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-top: 1.5rem;
}
.customergroup__detail-layout--title-only {
  grid-template-columns: 1fr;
}
.customergroup__detail-heading .customergroup__title {
  max-width: 10ch;
  font-size: 3.4rem;
  text-align: left;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.customergroup__detail-layout--title-only .customergroup__title {
  max-width: 18ch;
}
.customergroup__eyebrow {
  margin: 0 0 0.8rem;
  color: #fef5e3;
  font-size: 0.95rem;
  font-weight: 700;
}
.customergroup__related {
  margin-top: 2.5rem;
}
.customergroup__related-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.customergroup__related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.customergroup__related-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, border-radius 0.2s ease;
}
.customergroup__related-link:hover, .customergroup__related-link:focus-visible {
  border-color: #ffffff;
  border-radius: 8px;
  background-color: #ffffff;
  color: #eb5f00;
}
.customergroup__related-link:hover .customergroup__related-arrow, .customergroup__related-link:focus-visible .customergroup__related-arrow {
  color: #eb5f00;
}
.customergroup__related-arrow {
  flex: 0 0 auto;
  color: #ffffff;
  transition: color 0.2s ease;
}
.customergroup__persons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  margin-top: 2.5rem;
}
.customergroup__person {
  display: flex;
  box-sizing: border-box;
  width: 8rem;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  animation: customergroup-person-float 8s ease-in-out infinite;
}
.customergroup__person:nth-child(2) {
  animation-duration: 9.5s;
  animation-delay: -2s;
}
.customergroup__person:nth-child(3) {
  animation-duration: 7s;
  animation-delay: -4.5s;
  animation-direction: reverse;
}
.customergroup__person:nth-child(4) {
  animation-duration: 10.5s;
  animation-delay: -1s;
}
.customergroup__person:nth-child(5) {
  animation-duration: 6.4s;
  animation-delay: -3s;
  animation-direction: reverse;
}
.customergroup__person:nth-child(6) {
  animation-duration: 8.8s;
  animation-delay: -5.5s;
}
.customergroup__person:hover, .customergroup__person:focus-visible {
  animation-play-state: paused;
}
.customergroup__person-photo {
  width: 6rem;
  height: 6rem;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(93, 28, 62, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.customergroup__person-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-wrap: balance;
}
.customergroup__person:hover .customergroup__person-photo, .customergroup__person:focus-visible .customergroup__person-photo {
  border-color: #eb5f00;
  transform: scale(1.08);
}
.customergroup__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  padding: 0;
  margin: 2.5rem 0 0;
  text-align: left;
  list-style: none;
}
.customergroup__list-item {
  box-sizing: border-box;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(93, 28, 62, 0.12);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .customergroup__list-item {
    background: rgba(200, 68, 122, 0.92);
  }
}
.customergroup__list-item:hover, .customergroup__list-item:focus-visible, .customergroup__list-item:focus-within {
  border-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 14px 38px rgba(93, 28, 62, 0.22);
}
.customergroup__list-item:hover .customergroup__list-arrow, .customergroup__list-item:focus-within .customergroup__list-arrow {
  border-color: #eb5f00;
  background-color: #eb5f00;
}
.customergroup__list-item:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.customergroup__card-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.25rem 1.4rem;
  color: #ffffff;
  text-decoration: none;
}
.customergroup__card-link:focus-visible {
  outline-color: #ffffff;
  outline-offset: -5px;
}
.customergroup__list-item--with-text .customergroup__card-link {
  padding: 1.5rem;
}
.customergroup__list-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.customergroup__list-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.customergroup__list-summary {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 1600px) {
  .customergroup__persons {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    margin-top: 0;
    pointer-events: none;
  }
  .customergroup__person {
    position: absolute;
    pointer-events: auto;
  }
  .customergroup__person:nth-child(odd) {
    right: 100%;
    margin-right: 4rem;
  }
  .customergroup__person:nth-child(even) {
    left: 100%;
    margin-left: 4rem;
  }
  .customergroup__person:nth-child(1),
  .customergroup__person:nth-child(2) {
    top: 34%;
  }
  .customergroup__person:nth-child(3),
  .customergroup__person:nth-child(4) {
    top: 54%;
  }
  .customergroup__person:nth-child(5),
  .customergroup__person:nth-child(6) {
    top: 74%;
  }
  .customergroup__person:nth-child(7),
  .customergroup__person:nth-child(8) {
    top: 94%;
  }
}
@keyframes customergroup-person-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0.5rem, -0.7rem);
  }
  50% {
    transform: translate(-0.6rem, 0.4rem);
  }
  75% {
    transform: translate(0.35rem, 0.75rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .customergroup__list-item,
  .customergroup__list-arrow,
  .customergroup__back-link span:first-child,
  .customergroup__related-link,
  .customergroup__person {
    transition: none;
    animation: none;
  }
}
#content > .frame {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  padding: 0 1.5rem;
  margin: 0 auto 2rem;
  color: #ffffff;
  text-align: center;
}
#content > .frame:first-child {
  margin-top: 7rem;
}
#content > .frame:last-child {
  margin-bottom: 4rem;
}
#content > .frame h1,
#content > .frame h2,
#content > .frame h3,
#content > .frame h4,
#content > .frame h5 {
  color: #ffffff;
}
#content > .frame a {
  color: #ffffff;
}
#content > .frame ul,
#content > .frame ol {
  padding-left: 0;
  list-style-position: inside;
}
#content > .frame img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .customergroup {
    width: calc(100vw - 2rem);
    max-width: none;
    padding-top: 9rem;
    margin-right: 0;
    margin-left: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .customergroup__title {
    max-width: 18rem;
    margin-inline: auto;
    font-size: 1.65rem;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
  .customergroup__detail-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .customergroup__detail-heading .customergroup__title {
    max-width: 12ch;
    margin: 0;
    font-size: 2.35rem;
    text-align: left;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .customergroup__detail-layout--title-only .customergroup__title {
    max-width: 100%;
  }
  .customergroup__text {
    font-size: 1.08rem;
  }
  .customergroup__related-list {
    grid-template-columns: 1fr;
  }
  .customergroup__list {
    grid-template-columns: 1fr;
  }
  #content > .frame:first-child {
    margin-top: 8rem;
  }
}
.color-white {
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

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

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

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.grid--3-1-cols {
  grid-template-columns: 3fr 1fr;
}

.grid--1-3-cols {
  grid-template-columns: 1fr 3fr;
}

.grid--blockgrid > .cell,
.grid--flexiblegrid > .cell {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--slider,
.grid--accordion {
  grid-template-columns: 1fr;
}

.cell {
  min-width: 0;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.anniversary-stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  flex: 1 1 auto;
  min-height: 70svh;
  margin: 0 auto;
}
.anniversary-stage img,
.anniversary-stage map {
  margin: 0 auto;
}

.anniversary-stage__headline {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 1004;
  width: 60vw;
  transform: translate(-50%, 0);
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
.anniversary-stage__headline h1 {
  font-size: 1.8rem;
}
.anniversary-stage__headline h1,
.anniversary-stage__headline .anniversary-stage__subline {
  color: #ffffff;
  text-align: center;
}

.anniversary-stage__subline {
  margin-top: 0;
}
.anniversary-stage__subline p {
  margin: 0 0 0.4rem;
}
.anniversary-stage__subline p + p {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
}

.anniversary-stage__canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 800px;
  height: 520px;
  transform: translate(-50%, -50%);
}

.person-bubble {
  position: absolute;
  z-index: 30;
  overflow: visible;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 10px 26px rgba(93, 28, 62, 0.22);
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform;
}

.person-bubble.floating {
  animation: bubble-float var(--duration, 10s) ease-in-out infinite;
}

.person-bubble.paused {
  animation-play-state: paused;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translate(-50%, -50%) translateZ(0) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x1, 0), var(--y1, 0));
  }
  50% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x2, 0), var(--y2, 0));
  }
  75% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x3, 0), var(--y3, 0));
  }
}
.bubble-scale-wrapper {
  overflow: hidden;
  border-radius: 50%;
}

.person-bubble:hover .bubble-scale-wrapper,
.person-bubble.hovered .bubble-scale-wrapper {
  transform: translate(-50%, -50%) scale(1.35) !important;
  transition: transform 0.3s ease !important;
}

.person-bubble.pulse-idle .bubble-scale-wrapper {
  transform: translate(-50%, -50%) scale(1.25) !important;
  transition: transform 0.9s ease-in-out !important;
}

.modal-bubble {
  position: fixed;
  z-index: 1001;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(42, 15, 28, 0.18);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.modal-backdrop.is-visible {
  opacity: 1;
}

.modal-info-box.is-measuring,
.modal-info-box.is-measuring * {
  transition: none !important;
}

.modal-info-box {
  box-sizing: border-box;
  width: 580px;
  max-width: 92vw;
  aspect-ratio: 89.667/62.423;
  max-height: 86vh;
  padding: 2rem 1.5rem 0.5rem;
  border: none;
  color: #ffffff;
  font-family: "Carnas", system-ui, sans-serif;
  line-height: 1.5;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-info-box p {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  font-size: 1rem;
}
.modal-info-box h3 {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0.5rem 0.5rem 0;
  font-size: 1.6rem;
  line-height: 1;
}
.modal-info-box .description {
  font-weight: 400;
}
.modal-info-box .description .role {
  transition: opacity 0.2s ease;
  opacity: 1;
}
.modal-info-box .description a {
  color: #ffffff;
}
.modal-info-box .quote {
  font-weight: 600;
}

.modal-close-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(235, 95, 0, 0.86);
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
  clip-path: polygon(0% 6.086%, 100% 0%, 96.088% 88.252%, 28.071% 85.988%, 16.795% 100%, 15.96% 85.585%, 4.367% 85.199%);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .modal-shape {
    background: #eb5f00;
  }
}

.modal-info-box__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: flex-start;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.modal-header {
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-info-box.is-longtext .modal-header {
  transform: translateY(-6px);
}

.modal-info-box.is-longtext {
  aspect-ratio: auto;
  min-height: 404px;
  padding: 0 2rem 1.25rem;
  overflow-y: hidden !important;
}
.modal-info-box.is-longtext .modal-info-box__content {
  padding: 2rem 1rem;
}
.modal-info-box.is-longtext .modal-info-box__content .modal-header .description .role {
  display: none;
}
.modal-info-box.is-longtext .modal-shape {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 28.071% 100%, 16.795% 100%, 15.96% 100%, 0% 100%);
}

.description {
  margin: 0 !important;
  padding-top: 0 !important;
}

.quote {
  position: relative;
  float: right;
  width: fit-content;
  margin-top: 0;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  line-height: 1.3;
  text-align: center;
}
.quote::after {
  content: "";
  position: absolute;
  top: 0rem;
  right: -40px;
  width: 135px;
  height: 135px;
  background-image: url("../Assets/Img/anfuehrungszeichen.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

.modal-surround-bubble {
  position: fixed;
  z-index: 1000;
  border-radius: 50%;
  cursor: pointer;
  backface-visibility: hidden;
  transform-origin: center center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  will-change: transform;
}
.modal-surround-bubble.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.modal-surround-bubble.floating {
  animation: surround-bubble-float var(--duration, 10s) ease-in-out infinite;
}
.modal-surround-bubble:hover {
  animation: none !important;
  transform: translate(-50%, -50%) scale(1.3) !important;
}

@keyframes surround-bubble-float {
  0%, 100% {
    transform: translate(-50%, -50%) translateZ(0) translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x1, 0), var(--y1, 0)) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x2, 0), var(--y2, 0)) scale(1);
  }
  75% {
    transform: translate(-50%, -50%) translateZ(0) translate(var(--x3, 0), var(--y3, 0)) scale(1);
  }
}
.modal-mobile-slider {
  position: fixed;
  left: 50%;
  bottom: max(3vh, env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 1005;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(42, 15, 28, 0.42);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(93, 28, 62, 0.12);
  color: #ffffff;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .modal-mobile-slider {
    background: rgba(42, 15, 28, 0.9);
  }
}
.modal-mobile-slider.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.modal-mobile-slider__arrow {
  appearance: none;
  border: 0;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.modal-mobile-slider__arrow:hover, .modal-mobile-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.32);
}
.modal-mobile-slider__arrow:active {
  transform: scale(0.9);
}
.modal-mobile-slider__arrow svg {
  display: block;
}
.modal-mobile-slider__status {
  min-width: 3rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button--fallback {
  width: 44px;
  height: 44px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(0, 120, 88, 0.85);
}
.play-button--fallback::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ffffff;
}

html.modal-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open .anniversary-footer {
  visibility: hidden;
}
body.modal-open .anniversary-stage__headline {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
body.modal-open .fsnav__toggle {
  visibility: hidden;
}

.video-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  color: #ffffff;
  font-family: "Carnas", system-ui, sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.video-controls.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.video-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.video-controls button:hover {
  transform: scale(1.2);
}
.video-controls button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.video-controls button svg {
  position: static;
  width: 24px;
  height: 24px;
  opacity: 1;
}
.video-controls .video-volume-control {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.video-controls .volume-slider {
  position: relative;
  flex: 0 0 auto;
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  touch-action: none;
}
.video-controls .volume-slider::before {
  content: "";
  position: absolute;
  inset: -16px -8px;
}
.video-controls .volume-slider:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 6px;
}
.video-controls .volume-slider__fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--volume-level, 100%);
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}
.video-controls .volume-slider__fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(50%, -50%);
}
.video-controls.is-volume-locked .volume-slider {
  display: none;
}
.video-controls .progress-container {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  touch-action: none;
}
.video-controls .progress-container::before {
  content: "";
  position: absolute;
  inset: -16px 0;
}
.video-controls .progress-container .progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #007858;
  transition: width 0.1s linear;
}
.video-controls .progress-container:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.video-controls .time-display {
  color: #ffffff;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.video-controls.is-portrait-video .video-volume-control .volume-slider, .video-controls.is-compact .video-volume-control .volume-slider {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  width: 6px;
  height: 96px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.65);
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.video-controls.is-portrait-video .video-volume-control .volume-slider::before, .video-controls.is-compact .video-volume-control .volume-slider::before {
  inset: -12px -18px;
}
.video-controls.is-portrait-video .video-volume-control .volume-slider__fill, .video-controls.is-compact .video-volume-control .volume-slider__fill {
  width: 100%;
  height: var(--volume-level, 100%);
}
.video-controls.is-portrait-video .video-volume-control .volume-slider__fill::after, .video-controls.is-compact .video-volume-control .volume-slider__fill::after {
  top: 0;
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-controls.is-portrait-video .video-volume-control.is-volume-open .volume-slider, .video-controls.is-compact .video-volume-control.is-volume-open .volume-slider {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.video-controls.is-portrait-video {
  gap: 10px;
  padding: 14px 16px;
}
.video-controls.is-portrait-video .time-display {
  font-size: 12px;
}
.video-controls.is-compact {
  gap: 8px;
  padding: 10px 10px 12px;
}
.video-controls.is-compact .progress-container {
  height: 8px;
  border-radius: 4px;
}
.video-controls.is-compact button {
  padding: 4px;
}
.video-controls.is-compact button svg {
  width: 20px;
  height: 20px;
}
.video-controls.is-compact .time-display {
  font-size: 11px;
}
.video-controls.is-tiny .time-display {
  display: none;
}

@media (max-width: 768px) {
  .anniversary-stage__canvas {
    top: 17%;
    margin-top: 0;
    transform: translate(-50%, -50%) scale(0.65);
  }
  .anniversary-stage__headline {
    top: auto;
    bottom: 0;
    width: 88vw;
    transform: translateX(-50%);
  }
  .anniversary-stage__headline h1 {
    padding: 0 1.5rem;
    font-size: 1.4rem;
  }
  .anniversary-stage__headline h2 {
    padding: 0 1.5rem;
    font-size: 1.2rem;
  }
  .anniversary-stage__headline .anniversary-stage__subline {
    padding: 0 1.5rem;
    font-size: 1.1rem;
  }
  .modal-info-box {
    left: 50% !important;
    top: 16vh !important;
    top: 16svh !important;
    bottom: auto !important;
    width: 86vw !important;
    min-width: 0 !important;
    max-width: 360px !important;
    height: auto !important;
    max-height: 70vh !important;
    max-height: 70svh !important;
    aspect-ratio: auto !important;
    padding: 4.5rem 1.25rem 1.5rem !important;
    overflow-y: hidden !important;
    font-size: 1rem !important;
    text-align: center !important;
    transform: translate(-50%, 0) !important;
  }
  .modal-info-box .modal-shape {
    border-radius: 24px;
    clip-path: none;
  }
  .modal-info-box .modal-info-box__content {
    height: auto;
    justify-content: flex-start;
  }
  .modal-info-box h3,
  .modal-info-box p {
    padding-left: 0 !important;
    text-align: center !important;
  }
  .modal-info-box h3 {
    margin-top: 0 !important;
  }
  .modal-bubble {
    left: 50% !important;
    top: 16vh !important;
    top: 16svh !important;
    bottom: auto !important;
    z-index: 1003 !important;
    width: 110px !important;
    max-width: 110px !important;
    height: 110px !important;
    max-height: 110px !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
    transform: translate(-50%, -50%) !important;
  }
  .modal-surround-bubble {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  }
  .modal-backdrop {
    background: rgba(0, 0, 0, 0.55) !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box {
    --sheet-top: max(7rem, calc(env(safe-area-inset-top, 0px) + 5rem));
    top: var(--sheet-top) !important;
    width: 87vw !important;
    max-width: none !important;
    height: calc(100vh - var(--sheet-top)) !important;
    height: calc(100dvh - var(--sheet-top)) !important;
    max-height: calc(100vh - var(--sheet-top)) !important;
    max-height: calc(100dvh - var(--sheet-top)) !important;
    min-height: 0 !important;
    padding: 1.25rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    text-align: left !important;
    transition: none;
    animation: modal-sheet-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-header,
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-pages,
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-actions {
    animation: modal-sheet-content-in 0.45s ease 0.2s both;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-shape {
    border-radius: 24px 24px 0 0;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-info-box__content {
    height: 100%;
    padding: 0;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-right: 2.5rem;
    margin-bottom: 0.5rem;
    transform: none;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-header h3 {
    padding: 0 0 0.2rem;
    font-size: 1.35rem;
    text-align: left !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-header .description {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-header .description .role {
    display: none;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-sheet-avatar {
    display: block;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-longtext {
    max-height: none;
    margin-top: 1rem;
    text-align: left !important;
    font-size: 1.2rem;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-longtext p {
    text-align: left !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-longtext .role-heading {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    line-height: 1.25;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-actions {
    gap: 0.6rem;
    padding-top: 0.75rem !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-actions .modal-page-toggle,
  body.modal-sheet-active:not(.modal-video-active) .modal-info-box .modal-actions .modal-shop {
    flex: 1 1 calc(50% - 0.3rem);
    justify-content: center;
    text-align: center;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-bubble {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.3) !important;
    transition: transform 0.35s ease, opacity 0.25s ease !important;
  }
  body.modal-sheet-active:not(.modal-video-active) .modal-mobile-slider {
    opacity: 0 !important;
    transform: translate(-50%, 12px) !important;
    pointer-events: none !important;
  }
  body.modal-sheet-active.modal-sheet-leaving:not(.modal-video-active) .modal-info-box {
    animation: modal-sheet-out 0.3s ease both;
    pointer-events: none;
  }
  body.modal-sheet-active.modal-sheet-leaving:not(.modal-video-active) .modal-info-box .modal-header,
  body.modal-sheet-active.modal-sheet-leaving:not(.modal-video-active) .modal-info-box .modal-pages,
  body.modal-sheet-active.modal-sheet-leaving:not(.modal-video-active) .modal-info-box .modal-actions {
    animation: none;
  }
}
@keyframes modal-sheet-in {
  from {
    opacity: 0;
    margin-top: 32px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes modal-sheet-out {
  from {
    opacity: 1;
    margin-top: 0;
  }
  to {
    opacity: 0;
    margin-top: 32px;
  }
}
@keyframes modal-sheet-content-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-sheet-avatar {
  display: none;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.modal-open.modal-video-active .anniversary-logo {
  z-index: 1000;
}
@media (max-width: 768px) {
  body.modal-open.modal-video-active .modal-bubble {
    top: var(--modal-video-top, 6vh) !important;
    width: var(--modal-video-width, 80vw) !important;
    max-width: none !important;
    height: var(--modal-video-height, 40vh) !important;
    max-height: none !important;
    border: none !important;
    border-radius: 18px !important;
    transform: translate(-50%, 0) !important;
  }
  body.modal-open.modal-video-active .modal-info-box {
    top: var(--modal-info-top, 52vh) !important;
    max-height: var(--modal-info-max-height, 42vh) !important;
    min-height: 0 !important;
    padding: 1.25rem !important;
  }
  body.modal-open.modal-video-active .modal-info-box .modal-info-box__content {
    padding-bottom: 0 !important;
  }
  body.modal-open.modal-video-active .modal-info-box .modal-actions {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 0.9rem 0 0 !important;
  }
  body.modal-open.modal-video-active .modal-info-box .modal-shop {
    flex: 0 1 auto;
    min-width: 0;
    padding: 0.45em 0.9em;
    overflow: hidden;
    white-space: nowrap;
  }
  body.modal-open.modal-video-active .modal-info-box .play-button img {
    width: 46px;
    height: 46px;
  }
  body.modal-open.modal-video-active .modal-info-box .modal-pages,
  body.modal-open.modal-video-active .modal-info-box .modal-page-toggle,
  body.modal-open.modal-video-active .modal-info-box .modal-links {
    display: none !important;
  }
}

.modal-pages {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.modal-page.is-current {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.modal-longtext {
  max-height: 42vh;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  overflow-y: auto;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
.modal-longtext .role-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.modal-longtext p {
  padding: 0 0 0.7rem;
  margin: 0;
  font-size: 1rem;
}
.modal-longtext a {
  color: #ffffff;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem 1.2rem;
  padding: 0.6rem 0 1.5rem;
  margin-top: auto;
  font-size: 1rem;
}
.modal-info-box.is-longtext .modal-actions {
  padding: 0;
}

.modal-page-toggle {
  padding: 0.45em 1.1em;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.modal-page-toggle:hover, .modal-page-toggle:focus-visible {
  background: #ffffff;
  color: #eb5f00;
}

.modal-shop {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 0 0 auto;
  gap: 10px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.15s ease;
  padding: 0.45em 1.1em;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.modal-shop .modal-shop__icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  mask: url("../Assets/Illu/cart.svg") center/contain no-repeat;
  -webkit-mask: url("../Assets/Illu/cart.svg") center/contain no-repeat;
  pointer-events: none;
}
.modal-shop:hover, .modal-shop:focus-visible {
  background: #ffffff;
  color: #eb5f00;
}

.modal-group-link {
  padding: 0.45em 1.1em;
  border: 2px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.modal-group-link:hover, .modal-group-link:focus-visible {
  background: #ffffff;
  color: #eb5f00;
}

.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.modal-links li {
  margin: 0;
}
.modal-links a {
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.modal-links--with-toggle {
  flex: 1 0 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 0.9rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.modal-info-box.is-longtext .modal-links--with-toggle {
  max-height: 12rem;
  opacity: 1;
  pointer-events: auto;
}

.modal-video-slot {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.play-button img {
  display: block;
  width: 55px;
  height: 55px;
  pointer-events: none;
}
.play-button:hover, .play-button:focus-visible {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .modal-actions {
    justify-content: center;
    padding: 1rem 0 0;
  }
  .modal-info-box.is-longtext .modal-actions {
    padding: 1rem 0 0;
  }
  .modal-info-box__content {
    padding-bottom: 1rem;
  }
  .modal-video-slot {
    margin-left: 0;
  }
  .modal-info-box,
  .modal-info-box.is-longtext {
    overflow-y: hidden !important;
  }
  .modal-page {
    position: relative;
    display: none;
    transform: none;
  }
  .modal-page.is-current {
    display: flow-root;
    transform: none;
  }
  .modal-longtext {
    max-height: none;
    padding-right: 0;
    overflow-y: visible;
    text-align: center;
  }
}
#cookieman-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  width: calc(100vw - 2.5rem);
  max-width: 420px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
  pointer-events: none;
}
#cookieman-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
}

.cookieman-box {
  background: rgba(235, 95, 0, 0.86);
  backdrop-filter: blur(26px) saturate(120%);
  -webkit-backdrop-filter: blur(26px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 38px rgba(93, 28, 62, 0.22);
  color: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.25rem;
  font-family: "Carnas", system-ui, sans-serif;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .cookieman-box {
    background: #eb5f00;
  }
}

.cookieman-box__heading {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.cookieman-box__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.cookieman-box__text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookieman-settings {
  margin: 0 0 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.cookieman-settings[hidden] {
  display: none;
}

.cookieman-settings__group + .cookieman-settings__group {
  margin-top: 0.9rem;
}

.cookieman-settings__group-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  cursor: pointer;
}
.cookieman-settings__group-label input[type=checkbox] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #ffffff;
}
.cookieman-settings__group-label input:disabled {
  cursor: not-allowed;
}

.cookieman-settings__badge {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cookieman-settings__desc {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0.9;
}

.cookieman-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.6rem;
}

.cookieman-btn {
  padding: 0.45em 1.1em;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cookieman-btn:hover, .cookieman-btn:focus-visible {
  background: #ffffff;
  color: #eb5f00;
}

.cookieman-btn--primary {
  background: #ffffff;
  color: #eb5f00;
}
.cookieman-btn--primary:hover, .cookieman-btn--primary:focus-visible {
  background: transparent;
  color: #ffffff;
}

.cookieman-btn--ghost {
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.cookieman-btn--ghost:hover, .cookieman-btn--ghost:focus-visible {
  background: transparent;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  #cookieman-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    max-width: none;
  }
}

/*# sourceMappingURL=Anniversary.css.map */
