.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-bdc7ae8:#D1B169;--e-global-color-75d64ad:#848484;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-615a656-font-family:"Bricolage Grotesque";--e-global-typography-615a656-font-size:40px;--e-global-typography-615a656-font-weight:700;--e-global-typography-615a656-line-height:45px;--e-global-typography-615a656-letter-spacing:-2.2px;--e-global-typography-2cf606c-font-family:"Montserrat";--e-global-typography-2cf606c-font-size:25px;--e-global-typography-2cf606c-font-weight:400;--e-global-typography-2cf606c-line-height:25px;--e-global-typography-2cf606c-letter-spacing:-0.6px;--e-global-typography-cba332e-font-family:"Bricolage Grotesque";--e-global-typography-cba332e-font-size:35px;--e-global-typography-cba332e-font-weight:500;--e-global-typography-cba332e-line-height:45px;--e-global-typography-cba332e-letter-spacing:-2.5px;}.elementor-kit-9 button,.elementor-kit-9 input[type="button"],.elementor-kit-9 input[type="submit"],.elementor-kit-9 .elementor-button{background-color:#00000000;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  --mythos-font-primary: 'Montserrat', sans-serif;
  --mythos-font-accent: 'League Spartan', 'Montserrat', sans-serif;
  --mythos-bg: #ffffff;
  --mythos-fg: #1c1c1c;
  --mythos-accent: #3a3a3a;
  --mythos-transition: 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  --mythos-header-hidden-offset: 140px;
  --mythos-max-width: 1200px;
  color-scheme: light;
}

html,
body {
  font-family: var(--mythos-font-primary);
  color: var(--mythos-fg);
  background: var(--mythos-bg);
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

.mythos-header {
  position: fixed;
  top: calc(var(--mythos-header-hidden-offset) * -1);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  color: var(--mythos-fg);
  padding-inline: clamp(1rem, 4vw, 3.5rem);
  padding-block: clamp(0.75rem, 2vw, 1.25rem);
  transition: top 0.32s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  will-change: top;
  contain: layout paint style;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.mythos-header.headershow {
  top: 0;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.mythos-header__inner {
  margin: 0 auto;
  width: 100%;
  max-width: var(--mythos-max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
}

.mythos-header__left,
.mythos-header__right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  min-width: 0;
}

.mythos-header__right {
  justify-content: flex-end;
}

.mythos-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mythos-logo__image {
  display: block;
  width: clamp(40px, 10vw, 64px);
  aspect-ratio: 1;
  object-fit: contain;
}

.mythos-lang-switcher {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px;
  background: rgba(255, 255, 255, 0.8);
  gap: 4px;
}

.mythos-lang-switcher button,
.mythos-lang-switcher a {
  font: inherit;
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.mythos-lang-switcher .is-active,
.mythos-lang-switcher button:focus-visible,
.mythos-lang-switcher a:focus-visible,
.mythos-lang-switcher button:hover,
.mythos-lang-switcher a:hover {
  background: var(--mythos-fg);
  color: var(--mythos-bg);
}

.mythos-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.mythos-menu-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.mythos-menu-trigger:hover,
body.menu-open .mythos-menu-trigger {
  background: rgba(0, 0, 0, 0.06);
}

.mythos-hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.mythos-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--mythos-transition), opacity 0.3s ease;
}

body.menu-open .mythos-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .mythos-hamburger__line:nth-child(2) {
  opacity: 0;
}

body.menu-open .mythos-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mythos-menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem);
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--mythos-transition), visibility 0s linear 0.4s;
  will-change: opacity;
  z-index: 999;
}

body.menu-open .mythos-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mythos-menu-overlay__panel {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  max-width: var(--mythos-max-width);
  width: 100%;
}

.mythos-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mythos-menu-nav a {
  text-decoration: none;
  color: var(--mythos-fg);
  font-size: clamp(1.6rem, 2.9vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease, font-weight 0.2s ease;
}

.mythos-menu-nav a:hover,
.mythos-menu-nav a:focus-visible {
  opacity: 0.7;
}

.mythos-menu-nav a.is-active {
  font-weight: 600;
}

.mythos-gallery {
  display: grid;
  gap: 1.25rem;
}

.mythos-gallery__title {
  font-family: var(--mythos-font-accent);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--mythos-fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.2s ease;
}

.mythos-gallery__title::after {
  content: '↗';
  font-size: 1.1em;
}

.mythos-gallery__title:hover,
.mythos-gallery__title:focus-visible {
  opacity: 0.7;
}

.mythos-gallery__scroller {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.mythos-gallery__track {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  animation: mythos-scroll 26s linear infinite;
}

.mythos-gallery__item {
  flex-shrink: 0;
}

.mythos-gallery__image {
  width: clamp(112px, 18vw, 140px);
  height: clamp(112px, 18vw, 140px);
  object-fit: cover;
  border-radius: 12px;
}

@keyframes mythos-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.mythos-menu-overlay__close {
  position: absolute;
  top: clamp(1.25rem, 5vw, 2.25rem);
  right: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mythos-menu-overlay__close:hover,
.mythos-menu-overlay__close:focus-visible {
  background: rgba(0, 0, 0, 0.12);
}

.prefers-reduced-motion .mythos-gallery__track {
  animation-duration: 60s;
}

@media (max-width: 1024px) {
  .mythos-menu-overlay__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mythos-gallery {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mythos-header__inner {
    flex-direction: row;
  }

  .mythos-header__left {
    flex: 1;
  }

  .mythos-header__right {
    gap: 1rem;
  }

  .mythos-menu-nav a {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
  }

  .mythos-gallery__title {
    justify-self: center;
  }

  .mythos-menu-trigger {
    padding-inline: 0.45rem;
  }
}

@media (max-width: 480px) {
  .mythos-header {
    padding-inline: 1rem;
  }

  .mythos-lang-switcher {
    display: none;
  }
}/* End custom CSS */