@font-face {
    font-family: 'NewEdge';
    src: url('/assets/fonts/NewEdge666-RegularRounded.woff2') format('woff2'),
        url('/assets/fonts/NewEdge666-RegularRounded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GreedStandard-Medium';
    src: url('/assets/fonts/DASFRAULEINGreedStandard-Medium.woff2') format('woff2'),
        url('/assets/fonts/DASFRAULEINGreedStandard-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Layout */
:root {
  
  --banner-height:3.4rem;

  --margin: 1.0rem;
  --margin-s: var(--margin);
  --margin-m: calc(var(--margin)*2);
  --margin-l: calc(var(--margin)*3);
  --margin-outer: var(--margin-m);

  --max-container-width: 100%;
  --max-text-width: 60em;

  --grid-columns: repeat(6, 1fr);

}
@media (min-width: 520px) {
:root {
    --margin: 1.5rem

}
  }

@media (max-width: 520px) {
  .mob-only {
      display:default;
  }
}

@media (min-width: 520px) {
  .mob-only {
      display:none !important;
  }
}

@media (max-width: 520px) {
  .mob-hidden {
      display:none !important;
  }
}

@media (min-width: 520px) {
  .mob-hidden {
      display:default;
  }
}
:root {

    --sans-serif-fallback: "Helvetica Neue", Helvetica, Arial, sans-serif;

    --sans-serif: 'GreedStandard-Medium', var(--sans-serif-fallback);
    --main-font: var(--sans-serif);

    --title-font: 'NewEdge', var(--sans-serif-fallback);

    --font-size--s: 1.2rem;
    --line-height--s: 1.145em;
    --letter-spacing--s: 0.066em;

    --font-size--m: 1.5rem;
    --line-height--m: 1.25em;
    --letter-spacing--m: 0.025em;

    --font-size--l: 2.4rem;
    --line-height--l: 1.125em;
    --letter-spacing--l: 0.0125em;

    --font-size--xl: 3.2rem;
    --line-height--xl: 1.125em;
    --letter-spacing--xl: 0;

    --font-size--xxl: 4.0rem;
    --line-height--xxl: 1.125em;
    --letter-spacing--xxl: 0;
  

}

    @media (min-width: 1024px) {:root {

      --font-size--s: 1.3rem;
      --line-height--s: 1.145em;
      --letter-spacing--s: 0.066em;

      --font-size--m: 1.8rem;
      --line-height--m: 1.25em;
      --letter-spacing--m: 0.025em;

      --font-size--l: 3.0rem;
      --line-height--l: 1.125em;
      --letter-spacing--l: 0.0125em;

      --font-size--xl: 3.6rem;
      --line-height--xl: 1.125em;
      --letter-spacing--xl: 0;

      --font-size--xxl: 4.8rem;
      --line-height--xxl: 1.125em;
      --letter-spacing--xxl: 0
  

}
    }

    @media (min-width: 1360px) {:root {

      --font-size--xl: 4.8rem;
      --line-height--xl: 1.125em;
      --letter-spacing--xl: 0;

      --font-size--xxl: 7.2rem;
      --line-height--xxl: 1.125em;
      --letter-spacing--xxl: 0
  

}

    }
/* Color */
:root {


    --color-background: rgb(245, 245, 245);
    --color-card-background: rgba(255, 255, 255, 0.08);
    --color-card-background-hover: rgba(255, 255, 255, 0.12);
   

    --color-button-background: rgb(215, 215, 215);
    --color-button-background-hover: rgb(0, 0, 0);
    --color-button-background-active: rgb(0, 0, 0);
    
    --color-gradient-from: rgba(245, 245, 245, 1);
    --color-gradient-to: rgba(245, 245, 245, 0);

    --color-selection: rgb(246, 240, 127);
    
    --opacity-text: 0.4;
}


body[data-inverted="true"],
body.is-inverted {
    --color-background: rgb(10,10,10);
    --color-box-shadow: rgba(5, 5, 5, 0.4);
    --color-text: rgb(252,252,252); 
    --color-link-background: rgb(72,72,72);
    --color-border:  rgba(252,252,252,0.35);
    --color-gradient-from: rgba(5, 5, 5, 1);
    --color-gradient-to: rgba(5, 5, 5, 0);
    --color-card-background: rgba(255, 255, 255, 0.08);
    --color-card-background-hover: rgba(255, 255, 255, 0.12);
}
/* Animation */
:root {
  --anim-speed-fast: 0.24s;
  --anim-speed: 0.36s;
  --anim-speed-fade: 0.36s;

  --anim-speed-page-transition: 0.3s;
  --anim-speed-slow: 0.6s;
  --anim-ease: cubic-bezier(0.12, 0.67, 0.53, 1);
  /* --anim-ease: cubic-bezier(0.87, 0, 0.13, 1); */
}

.anim-pulse {
  animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    /* transform: scale(0.4); */
  }
  50% {
    opacity: 0;
    /* transform: scale(1); */
  }
  100% {
    opacity: 1;
    /* transform: scale(0.4); */
  }
}

.anim-pulse-blur {
  animation: pulse-blur 1.5s infinite;
}

.anim-pulse-blur-slow {
  animation: pulse-blur 5s infinite;
}

@keyframes pulse-blur {
  0% {
    text-shadow: 0 0 0 var(--hover-color);
    filter: blur(0px);
  }
  25% {
    text-shadow: 0 0 10px var(--hover-color);
    filter: blur(0px);
  }
  50% {
    text-shadow: 0 0 0 var(--hover-color);
    filter: blur(15px);
  }
  100% {
    text-shadow: 0 0 0 var(--hover-color);
    filter: blur(0px);
  }
}

.anim-fade-in-scale {
  animation: fade-in-scale 0.5s ease-in-out;
}

@keyframes fade-in-scale {
  0% {
    /* opacity: 0; */
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
:root {
    --z-below: -999;
    --z-spawn: 1;
    --z-spawn-hover: 2;
    --z-section-page: 3;

    --z-sticky: 900;
    --z-sticky-nav: 900;
    --z-curtain: 902;
    --z-overlay: 903;
    --z-overlay-button: 904;

    --z-header-dropdown: 904;
    --z-header: 905;
    --z-lightbox: 906;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted currentColor;
          text-decoration: underline dotted currentColor; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}


/**
 * Custom
 *  Resets margins and paddings for headers, ul, li, ol and p
 */
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style-type: none;
}
/* Base */


html {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

	/* overflow-y: scroll;
	overflow: -moz-scrollbars-vertical; */
	margin: 0 auto;
	width: 100vw;
  scroll-behavior: smooth;
  /* background-color: var(--color-background); */
}

::-moz-selection {
  background-color: var(--color-selection);
}

::selection {
  background-color: var(--color-selection);
}

html, body {
	width: 100%;
  min-height: 100%;
  background-color: var(--color-background);
  color: var(--color-text);

}

body {
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
  /* transition: opacity var(--anim-speed-page-transition) ease, background-color var(--anim-speed-page-transition) ease, color var(--anim-speed-page-transition) ease; */
  transition: background-color 0.36s ease, color 0.36s ease;
}

*, *::before, *::after {
	box-sizing: inherit;
  touch-action: inherit;
}

body.no-scroll {
	overflow: hidden;
}


/* The header curtain is used to hide elements when scrolling behind the offset of sticky elements, such as on the program page */
.header-curtain {
    background-color: var(--color-background);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--sticky-offset);
    z-index: 2;
}

/* Transition fade. Classes required for swup page transitions */
[data-transition="fade"],
.transition-fade {
  transition: opacity var(--anim-speed-page-transition) var(--anim-ease);
  opacity: 1;
}

[data-transition="fade-header"],
.transition-fade-header {
  transition: opacity var(--anim-speed-page-transition) var(--anim-ease);
  opacity: 1;
}

html.is-animating [data-transition="fade"],
html.is-animating .transition-fade {
  opacity: 0;
}

html.is-animating [data-transition="fade-header"],
html.is-animating .transition-fade-header {
  opacity: 0;
}

/* No JavaScript Styles */
html.no-js .g-container,
html.no-js .g-container .c-site-main,
html.no-js .o-item__loader,
html.no-js .o-image__loader,
html.no-js .o-image,
html.no-js .o-image img,
html.no-js img,
html.no-js img.lazyload,
html.no-js .o-floating-thumb {
  opacity: 1 !important;
  display: none !important;
}
/* Typographical base selectors. Define base styles on single element selectors here. */

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  color: var(--color-text);
  font-family: var(--main-font);
  font-size: 62.5%;
}

body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-hyphenate-character: "-";
	-moz-osx-font-smoothing: grayscale;
	
	font-feature-settings: 'kern' 1, 'ss01' 1, "liga", "clig";
	font-variant-ligatures: common-ligatures;
	text-rendering: optimizeLegibility;

	font-optical-sizing: auto;
	font-optical-sizing: auto;
	font-family: var(--main-font);
	font-size: var(--font-size--m);
	line-height: var(--line-height--m);
	letter-spacing: var(--letter-spacing--m);
	font-weight: 400;
	/* font-variant-alternates: ornaments(2); */

	color: var(--color-text);
}

.t-s,
[data-fontsize="s"]  {
  font-family: var(--main-font);
  font-size: var(--font-size--s);
  line-height: var(--line-height--s);
  letter-spacing: var(--letter-spacing--s);
}

.t-m,
.t-text,
[data-fontsize="m"],
[data-fontsize="default"]  {
  font-family: var(--main-font);
  font-size: var(--font-size--m);
  line-height: var(--line-height--m);
  letter-spacing: var(--letter-spacing--m);
}

.t-l,
[data-fontsize="l"] {
  font-family: var(--title-font);
  font-size: var(--font-size--l);
  line-height: var(--line-height--l);
  letter-spacing: var(--letter-spacing--l);
}

.t-xl,
[data-fontsize="xl"]  {
  font-family: var(--title-font);
  font-size: var(--font-size--xl);
  line-height: var(--line-height--xl);
  letter-spacing: var(--letter-spacing--xl);
	text-transform: uppercase;
}

.t-xxl,
[data-fontsize="xxl"]  {
  font-family: var(--title-font);
  font-size: var(--font-size--xxl);
  line-height: var(--line-height--xxl);
  letter-spacing: var(--letter-spacing--xxl);
	text-transform: uppercase;
}


.t-num {
	font-feature-settings: "tnum" 1, "tnum";
	font-variant-numeric: tabular-nums;
}

.t-num--spaced {
	letter-spacing: -.025em;
}

a {
	color: inherit;
	text-decoration: none;
  	transition: opacity var(--anim-speed-fast) var(--anim-ease);
}

.t-link {
	cursor: pointer;
	color: var(--color-link);
	opacity: 1;
  	transition: opacity var(--anim-speed-fast) var(--anim-ease);
}

.t-link:hover,
	.t-link:focus {
		opacity: var(--opacity-text);
	}

.t-faded {
  transition: opacity var(--anim-speed-fast) var(--anim-ease);
  opacity: var(--opacity-text);
}

.t-faded a:hover,
.t-faded a:focus {
	opacity: 1;
}

a.t-faded:hover,
	a.t-faded:focus {
		opacity: 1;
	}


p a {
  	color: inherit;
	text-decoration: none;
  	transition: opacity var(--anim-speed-fast) var(--anim-ease);
}


p a:hover,
	p a:focus {
		color: inherit;
    	opacity: var(--opacity-text);
	}

blockquote {
	margin-top: var(--margin-l);
	margin-bottom: var(--margin-l);
	margin-left: var(--margin-m);
	margin-right: 0;
	font-size: var(--font-size--l);
  	line-height: var(--line-height--l);
  	letter-spacing: var(--letter-spacing--l);
}

blockquote footer {
	display: block;
	font-size: var(--font-size--s);
  	line-height: var(--line-height--s);
  	letter-spacing: var(--letter-spacing--s);
	margin-top: 1.5em;
	opacity: var(--opacity-text);
}

.t-text h1,
.t-text h2,
.t-text h3 {
	/* font-family: var(--sans-serif-bold); */
	opacity: var(--opacity-text);
	margin-top: var(--line-height--m);
}

/* margin-bottom: var(--line-height--m); */

.t-text h1:first-child, .t-text h2:first-child, .t-text h3:first-child {
		margin-top: 0;
	}

.t-text,
.t-rich-text {
  max-width: var(--max-text-width);
}

.t-text p,
.t-rich-text p {
	margin-bottom: var(--line-height--m);
	text-indent: 0;
}

.t-text p:last-child, .t-rich-text p:last-child {
		margin-bottom: 0;
	}

.t-text--s p,
.t-text--s.t-rich-text p {
	margin-bottom: var(--line-height--m);
}

.t-text .m-embed-container {
	margin-top: calc(var(--line-height--m) * 2);
}

/* Paragraph spacing with indentation for t-xl and t-xxl */
.t-xl p,
.t-xxl p {
	margin-bottom: 0;
}
.t-xl p:last-child, .t-xxl p:last-child {
		margin-bottom: 0;
	}

.t-xl:not(.t-xl--no-indentation) p+p,
.t-xxl:not(.t-xxl--no-indentation) p+p {
	text-indent: 1.5em;
}

.t-xl--no-indentation p,
.t-xxl--no-indentation p {
	margin-bottom: var(--line-height--xl);
}

.t-xl--no-indentation p:last-child, .t-xxl--no-indentation p:last-child {
		margin-bottom: 0;
	}


.t-text--column-count-2 {
	-moz-column-count: 2;
	     column-count: 2;
	-moz-column-width: 200px;
	     column-width: 200px;
	-moz-column-gap: 20px;
	     column-gap: 20px;
}


@media(max-width: 520px) {


.t-text--column-count-2 {
		-moz-column-count: 1;
		     column-count: 1
}
	}

.t-text a {	
	text-decoration: underline;
}

.t-text a:hover,
	.t-text a:focus {
		opacity: var(--opacity-text);
	}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: inherit;
}

b, em, strong, i {
	font-weight: normal;
	font-style: normal;
}

/* Type overflow */

.t-dont-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Type treatments */

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-uppercase {
	text-transform: uppercase !important;
}

.t-default {
	text-transform: none !important;
}

.t-tight {
  margin: 0 !important;
}

.t-no-underline {
  border-bottom-width: 0 !important;
}


.t-comma-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.t-comma-list__item {
  display: inline;
  margin-right: 0;
}

.t-comma-list__item:last-child {
	margin-right: 0;
  }

.t-comma-list__item::after {
  content: ",";
  margin-right: 0.25em;
}

.t-comma-list__item:last-child::after {
  content: "";
  margin-right: 0;
}


/* Media
Base selectors for images, video, audio... */

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

/* purgecss start ignore */
img,
video {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  overflow: visible;
}

figure {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

figure figcaption {
  margin-top: 0.5em;
  /* margin-bottom: var(--margin); */
  width: 100%;
  display: block;
  text-align: left;
  /* opacity: var(--opacity-text); */
  font-size: var(--font-size--s);
  line-height: var(--line-height--s);
}

img[data-sizes="auto"] {
  display: block;
  width: 100%;
}

img.lazyload,
img.lazyloading,
iframe.lazyload,
iframe.lazyloading,
video.lazyload,
video.lazyloading {
  opacity: 0;
}

img.lazyloaded,
video.lazyloaded,
iframe.lazyloaded {
  opacity: 1;
  transition: opacity var(--anim-speed) cubic-bezier(.215,.61,.355,1) 0.15s, transform var(--anim-speed) cubic-bezier(.215,.61,.355,1) 0.35s;
}

.lazyscale {
  transform: scale(1.05);
  transform-origin: center center;
}

.lazyscale.lazyloaded {
  transform: scale(1);
}

body:not(.is-touch) .has-hoverstate-opacity {
    transition: opacity var(--anim-speed-fade) var(--anim-ease);
  }

body:not(.is-touch) .has-hoverstate-opacity:hover {
      opacity: 0.6;
    }

body:not(.is-touch) .has-hoverstate-grayscale {
    transition: all var(--anim-speed-fade) var(--anim-ease);
  }

body:not(.is-touch) .has-hoverstate-grayscale:hover {
      filter: gray;
      -webkit-filter: grayscale(1);
    }

body:not(.is-touch) .has-hoverstate-scale img,
    body:not(.is-touch) .has-hoverstate-scale video,
    body:not(.is-touch) .has-hoverstate-scale embed,
    body:not(.is-touch) .has-hoverstate-scale iframe {
      transition: all var(--anim-speed) var(--anim-ease);
      transform: scale(1);
    }

body:not(.is-touch) .has-hoverstate-scale:hover img,
      body:not(.is-touch) .has-hoverstate-scale:hover video,
      body:not(.is-touch) .has-hoverstate-scale:hover embed,
      body:not(.is-touch) .has-hoverstate-scale:hover iframe {
        transform: scale(1.02);
      }

body:not(.is-touch) .has-hoverstate-gallery {
      cursor: pointer;
  }

.m-image-blend-background > img {
    mix-blend-mode: multiply;
}

.m-hoverstate-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--anim-speed-fade) var(--anim-ease);
}

.m-hoverstate-image > img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      font-family: "object-fit: cover";
  }

body:not(.is-touch) .has-hoverstate-image:hover .m-hoverstate-image {
      opacity: 1;
    }

.m-image-container,
.m-video-container {
  position: relative;
  overflow: hidden;
}

.m-embed-video-container {
  position: relative;
  padding-bottom: 56.25%;
}

/* Container for soundcloud embeds */
.m-embed-container {
  position: relative;
  width: 100%;
}

.m-embed-container iframe {
  position: relative;
  width: 100%;
  height: 100%;
}

.m-embed-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.m-embed-video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.m-embed-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.m-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  transition: opacity var(--anim-speed) var(--anim-ease);
  -o-object-fit: cover;
     object-fit: cover;
}

/* Ensure actual image is above placeholder - only when placeholder exists */
.m-image-container[\:has\(.m-placeholder\)] .o-image,
.m-image-container[\:has\(.m-placeholder\)] .o-video {
  position: relative;
  z-index: 2;
}
.m-image-container:has(.m-placeholder) .o-image,
.m-image-container:has(.m-placeholder) .o-video {
  position: relative;
  z-index: 2;
}

/* Hide placeholder when image is loaded - using :has() for modern browsers */
.m-image-container[\:has\(.lazyloaded\)] .m-placeholder {
  opacity: 0;
  pointer-events: none;
}
.m-image-container:has(.lazyloaded) .m-placeholder {
  opacity: 0;
  pointer-events: none;
}


.m-image-container[data-fit="contain"] {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.m-image-container[data-fit="contain"] > img,
.m-image-container[data-fit="contain"] > video,
.m-image-container[data-fit="contain"] > iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: calc(var(--margin)*6);
}

@media(min-width: 1024px) {

.m-image-container[data-fit="contain"] > img,
.m-image-container[data-fit="contain"] > video,
.m-image-container[data-fit="contain"] > iframe {
      max-width: 75%
}
    }

[data-crop] {
  position: relative;
  overflow: hidden;
}

[data-crop] > img,
[data-crop] > video,
[data-crop] > iframe,
[data-crop] > .m-placeholder {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
  font-family: "object-fit: cover";
}

[data-ratio="auto"] {
  aspect-ratio: auto;
}

[data-ratio="2/3"],
[data-ratio="portrait"] {
  aspect-ratio: 2 / 3;
}

[data-ratio="3/2"],
[data-ratio="landscape"] {
  aspect-ratio: 3 / 2;
}

[data-ratio="3/4"] {
  aspect-ratio: 3 / 4;
}

[data-ratio="4/3"] {
  aspect-ratio: 4 / 3;
}

[data-ratio="1/1"],
[data-ratio="square"] {
  aspect-ratio: 1 / 1;
}

[data-ratio="16/9"] {
  aspect-ratio: 16 / 9;
}

/* Ensure images fill containers with aspect ratios */
[data-ratio]:not([data-ratio="auto"]) > img,
[data-ratio]:not([data-ratio="auto"]) > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

/* Use CSS aspect-ratio property for custom aspect ratios */
[style*="--aspect-ratio"] {
  aspect-ratio: var(--aspect-ratio);
}

[style*="--aspect-ratio"] > img,
[style*="--aspect-ratio"] > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}


/* purgecss end ignore */
input,
textarea,
button,
select {
  line-height: normal !important;
}

input,
textarea,
button,
select {
  font-family: inherit;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background-color: transparent;

  -webkit-appearance: none;
  -moz-appearance: none;

  height: auto;
  display: inline-block;
  color: inherit;
}

button {
  vertical-align: baseline;
  vertical-align: initial;
}

select,
option {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}


[tabindex="-1"]:focus {
    outline: none;
}

input[type="submit"]:disabled {
  color:var(--color-text-gray);
}

::-webkit-input-placeholder { color:var(--color-text-gray); }
::-moz-placeholder      	  { color:var(--color-text-gray); }
:-ms-input-placeholder    	{ color:var(--color-text-gray); }
input:-moz-placeholder    	{ color:var(--color-text-gray); }

form label {
		display:none;
	}

.g-container {
  position: relative;
  width: 100%;

  z-index: 1;
  max-width: var(--max-container-width);
  margin: 0 auto;
  padding: 0 var(--margin-outer);
}
.c-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  pointer-events: none;
}

.c-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-site-header a,
.c-site-header nav,
.c-site-header button {
  pointer-events: auto;
}

.c-site-logo {
  font-size: var(--font-size--l);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: inherit;
}

.c-site-logo span {
  display: inline-block;
  margin-left: 0.35em;
}

.c-site-nav {
  padding: 0;
}

.c-site-nav__list {
  justify-content: flex-end;
  gap: calc(var(--margin) * 1.5);
}

.c-site-main {
  margin-top: calc(var(--margin-l) * 2);
  flex: 1 0 auto;
  min-height: calc(100vh - var(--margin-l) * 2);

  /* opacity: 0; 
  animation: fadeIn 0.660s forwards; */
  /* background-color: var(--color-background); */
  z-index: 1;
}


.c-site-footer {
  margin-top: calc(var(--margin) * 4);
  margin-bottom: var(--margin);
  color: var(--color-text);
}

.c-site-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: var(--margin);
  gap: var(--margin);
  align-items: start;
}

@media (max-width: 1024px) {
  .c-site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .c-site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.c-site-footer__col {
  display: grid;
  grid-gap: 0.4rem;
  gap: 0.4rem;
}

.c-site-footer__label {
  opacity: 0.6;
}

.c-site-footer a {
  text-decoration: none;
  color: inherit;
}

.c-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: var(--margin);
  padding-right: 0;
  justify-content: flex-start;
  align-items: center;
}
  /* font-size: var(--font-size--l);
  line-height: var(--line-height--l);
  letter-spacing: var(--letter-spacing--l); */
  @media (max-width: 1024px) {.c-nav {
    display: none
}
  }
  @media(min-width: 768px) {.c-nav {
    position: relative;
    padding-top: var(--margin);
    padding-bottom: var(--margin);
    z-index: 2;
    font-size: var(--font-size--m);
    line-height: var(--line-height--m);
    letter-spacing: var(--letter-spacing--m)
}
  }

/* Menu toggle button - only visible on mobile */
.c-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
.c-nav-toggle {
    display: inline-flex
}
  }

.c-nav-toggle__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.c-nav-toggle__icon::before,
.c-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -6px);
}

.c-nav-toggle__icon::after {
  transform: translate(-50%, 6px);
}

.c-nav-toggle.is-active .c-nav-toggle__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-nav-toggle.is-active .c-nav-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hide nav list on mobile */
@media (max-width: 1024px) {
.c-nav .c-nav-list {
    display: none
}
  }

@media(min-width: 768px) {
  .c-nav .c-linklab {
    display: none;
  }
}

/* @media(--s-m-max) {
  .c-nav .c-filters {
    display: none;
  }
} */

.c-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  gap: calc(var(--margin) / 2);
  padding: 0;
  margin: 0;
  list-style: none;
}

@media(max-width: 768px) {

.c-nav ul {
    margin: 0 auto;
    justify-content: space-between;
    gap: calc(var(--margin) / 4)
}
  }

@media(min-width: 1024px) {

.c-nav ul {
    gap: calc(var(--margin))
}
  }

@media(min-width: 768px) {
  .c-nav__list {
      margin-right: calc(var(--margin)*2.5);
  }
}

.c-nav ul li{
  display: inline-block;
  line-height: 1em;
  max-width: 100%;
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width: 768px) {

.c-nav ul li{
      margin: 0 calc(var(--margin)/4)
}
  }

.c-nav ul li {
  transition: opacity var(--anim-speed) var(--anim-ease);
}

.c-nav ul li a{
  padding-left: 0em;
  padding-right: 0em;
  transition: background-color var(--anim-speed) var(--anim-ease), color var(--anim-speed) var(--anim-ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media(max-width: 768px) {

.c-nav ul li a{
    padding: 1em !important
}

.c-nav ul li a{
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(100,100,100, 0.2);
    backdrop-filter: blur(35px)
}
  }

.c-nav ul li a::before,
.c-nav ul li a::after {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.c-nav ul li a::before {
  content: "【";
  margin-right: 0em;
}

.c-nav ul li a::after {
  content: "】";
  margin-left: 0em;
}

.c-nav ul li a:hover::before,
.c-nav ul li a:hover::after,
.c-nav ul li a[aria-current="page"]::before,
.c-nav ul li a[aria-current="page"]::after {
  opacity: 1;
}

.c-nav ul li:first-child a {
    padding-left: 0;
}

.c-nav ul li:last-child a {
    padding-right: 0;
}

/* Fade out siblings on hover */
.c-nav ul:hover li {
  opacity: var(--opacity-text);
}

.c-nav ul li:hover {
  opacity: 1;
}

/* Fade out siblings when item is active */
.c-nav ul li a[aria-current="page"] {
  opacity: 1;
}

.c-nav ul li[\:has\(a\[aria-current\%3D\%22page\%22\]\)] {
  opacity: 1;
}

.c-nav ul li:has(a[aria-current="page"]) {
  opacity: 1;
}

.c-nav ul li[\:has\(a\[aria-current\%3D\%22page\%22\]\)] ~ li {
  opacity: var(--opacity-text);
}

.c-nav ul li:has(a[aria-current="page"]) ~ li {
  opacity: var(--opacity-text);
}

/* When active item exists, fade all others */
.c-nav ul[\:has\(li\%20a\[aria-current\%3D\%22page\%22\]\)] li[\:not-has\(a\[aria-current\%3D\%22page\%22\]\)] {
  opacity: var(--opacity-text);
}
.c-nav ul:has(li a[aria-current="page"]) li:not(:has(a[aria-current="page"])) {
  opacity: var(--opacity-text);
}

@media(max-width: 768px) {
.c-nav ul li a.is-active,
.c-nav ul li a:hover {
  text-decoration: none;
  background-color: rgba(0,0,0, 1);
  color: var(--color-white);
}
/* .c-filter-item a.has-brackets > span {
    display: none !important;
  } */
}


/* Project page navigation  */
.c-nav-project {
  position: sticky;
  top: var(--margin);
  width: 100%;
  padding-left: var(--margin);
  padding-right: var(--margin);
  z-index: var(--z-header);
}

.c-nav-project__title {
  opacity: 0;
  transition: opacity var(--anim-speed) var(--anim-ease);
}

.c-nav-project ul {
  position: relative;
  display: grid;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
  width: 100%;

      display: grid;
      grid-template-columns: var(--grid-columns);
      grid-gap: var(--margin);
  
}

.c-nav-project ul li:first-child{
 
      grid-column: span 2;

}

.c-nav-project ul li:nth-child(2){
  
    grid-column: span 8;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

  
}

.c-nav-project ul li:last-child {
  text-align: right;
    grid-column: span 2;
    position: absolute;
    right: 0;
 
}


.c-nav-project .c-nav-project__close {
  margin-left: auto;
}

/* Mobile navigation overlay */
.c-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-background);
  z-index: calc(var(--z-overlay) + 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--anim-speed) var(--anim-ease),
              visibility var(--anim-speed) var(--anim-ease);
  overflow-y: auto;
}
@media (min-width: 1024px) {
.c-nav-overlay {
    display: none
}
  }
.c-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

.c-nav-overlay__nav {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--margin);
}

.c-nav-overlay__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--margin) * 2);
  width: 100%;
  max-width: 100%;
}

.c-nav-overlay__item {
  display: block;
}

.c-nav-overlay__item a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size--xl);
  line-height: var(--line-height--xl);
  letter-spacing: var(--letter-spacing--xl);
  padding: calc(var(--margin) / 2) 0;
  transition: opacity var(--anim-speed) var(--anim-ease);
}

.c-nav-overlay__item a:hover {
    opacity: var(--opacity-text);
  }

.c-nav-overlay__item a[aria-current="page"] {
    opacity: 1;
    font-weight: bold;
  }

/* Mobile Navigation - Filter Style */
.c-nav-mobile {
  display: none;
}
@media (max-width: 767px) {
.c-nav-mobile {
    display: block;
    position: sticky;
    top: var(--margin);
    z-index: var(--z-header);
    width: calc(100vw - var(--margin) * 2);
    margin-left: var(--margin);
    margin-right: var(--margin)
    /* margin-top: var(--margin);
    margin-bottom: var(--margin);
    padding-top: var(--margin);
    padding-bottom: var(--margin); */
    /* background: var(--color-background); */
}
  }

.c-nav-mobile__toggle {
  background-color: rgba(100, 100, 100, 0.2);
  backdrop-filter: blur(35px);
  z-index: var(--z-header);
  color: var(--color-text);
  border: none;
  padding: calc(var(--margin) / 2) var(--margin);
  font-size: var(--font-size--m);
  line-height: var(--line-height--m);
  letter-spacing: var(--letter-spacing--m);
  cursor: pointer;
  transition: background-color var(--anim-speed) var(--anim-ease),
              color var(--anim-speed) var(--anim-ease);
  width: 100%;
  text-align: left;
  position: relative;
  padding-right: calc(var(--margin) * 2);
}

.c-nav-mobile__toggle::after {
  content: '+';
  position: absolute;
  right: var(--margin);
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--anim-speed) var(--anim-ease);
}

.c-nav-mobile.is-open .c-nav-mobile__toggle::after {
  content: '−';
}

.c-nav-mobile__toggle:hover,
.c-nav-mobile.is-open .c-nav-mobile__toggle {
  background-color: rgba(0, 0, 0, 1);
  color: var(--color-white);
}

.c-nav-mobile__dropdown {
  position: absolute;
  z-index: var(--z-header-dropdown);
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(100, 100, 100, 0.2);
backdrop-filter: blur(35px);
  border: none;
  max-height: 400px;
  overflow-y: auto;
  /* opacity: 0; */
  visibility: hidden;
  /* transform: translateY(-10px); */
  /* transition: opacity var(--anim-speed) var(--anim-ease), 
              visibility var(--anim-speed) var(--anim-ease),
              transform var(--anim-speed) var(--anim-ease); */
}

.c-nav-mobile.is-open .c-nav-mobile__dropdown {
  /* opacity: 1; */
  visibility: visible;
  /* transform: translateY(0); */
}

.c-nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-nav-mobile__item {
  margin: 0;
}

.c-nav-mobile__link {
  display: block;
  padding: calc(var(--margin) / 2) var(--margin);
  color: var(--color-text);
  text-decoration: none;
  transition: background-color var(--anim-speed) var(--anim-ease),
              color var(--anim-speed) var(--anim-ease),
              opacity var(--anim-speed) var(--anim-ease);
  font-size: var(--font-size--m);
  line-height: var(--line-height--m);
  letter-spacing: var(--letter-spacing--m);
  position: relative;
}

.c-nav-mobile__link:hover,
.c-nav-mobile__link[aria-current="page"] {
  background-color: rgba(0, 0, 0, 1);
  color: var(--color-white);
  opacity: 1;
}
.site-page {
  background: var(--color-background);
  color: var(--color-text);
}

.site-page .c-site-main {
  padding-top: calc(var(--margin) * 4);
}

.site-page-home .c-site-header {
  position: absolute;
}

.site-page-home .c-site-main {
  padding: 0;
  min-height: 100vh;
}

.c-page-title {
  text-transform: uppercase;
  margin-bottom: calc(var(--margin) * 2);
}

.c-hero {
  height: 100vh;
  overflow: hidden;
}

.c-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-hero__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  text-indent: -9999px;
}

.c-hero__slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.c-hero__slide.is-active {
  opacity: 1;
}

.c-hero__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease-out;
}

.c-hero__slide--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-project-list {
  display: grid;
  grid-gap: var(--margin-m);
  gap: var(--margin-m);
}

.c-project {
  position: relative;
  height: 50vh;
  max-height: 50vh;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  background: var(--color-card-background);
}

.c-project__trigger {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.c-project__media {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.c-project__title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color 0.2s ease-out;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.c-project:hover .c-project__title {
  color: var(--color-white);
  color: var(--accent, var(--color-white));
}

.c-project__meta {
  display: block;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.c-production-overlay {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  min-height: 100vh;
}

.c-production-overlay__inner {
  padding: calc(var(--margin) * 2);
}

.c-production-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: calc(var(--z-header) + 10);
  display: grid;
  grid-template-columns: 1fr;
}

.c-production-modal[hidden] {
  display: none;
}

.c-production-modal__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}

.c-production-modal__content {
  position: relative;
  height: 100%;
  overflow-y: auto;
  z-index: 1;
}

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

.site-page-project .c-site-header,
.site-page-project .c-site-footer,
.site-page-project .c-nav-overlay {
  display: none;
}

.c-production__controls {
  position: fixed;
  top: var(--margin);
  right: var(--margin);
  display: inline-flex;
  gap: var(--margin);
  z-index: var(--z-header);
}

.c-production__control {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  background: transparent;
}

.c-production__control--close::before,
.c-production__control--close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-production__control--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-production {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: calc(var(--margin) * 2);
  gap: calc(var(--margin) * 2);
}

.c-production__media-list {
  display: grid;
  grid-gap: var(--margin);
  gap: var(--margin);
}

.c-production__media-item {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-card-background);
}

.c-production__media-element {
  width: 100%;
  height: auto;
  display: block;
}

.c-production__content {
  display: flex;
  flex-direction: column;
  gap: var(--margin);
}

.c-production__title {
  margin: 0;
}

@media (max-width: 1024px) {
  .c-production-overlay__inner {
    padding: var(--margin);
  }

  .c-production {
    grid-template-columns: 1fr;
  }

  .c-production__media-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--margin);
    padding-bottom: var(--margin);
    -webkit-overflow-scrolling: touch;
  }

  .c-production__media-item {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
}

.c-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: calc(var(--margin) * 2);
  gap: calc(var(--margin) * 2);
  align-items: top;
  margin-bottom: calc(var(--margin) * 3);
}

.c-split__media {
  grid-column: 1;
  grid-row: 1;
}

.c-split__content-wrap {
  grid-column: 2;
  grid-row: 1;
}

.c-split__content {
  grid-column: auto;
}

.c-split__meta {
  margin-top: var(--margin);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: var(--margin);
  gap: var(--margin);
}

@media (max-width: 1024px) {
  .c-split {
    grid-template-columns: 1fr;
  }

  .c-split__media,
  .c-split__content-wrap {
    grid-column: 1;
    grid-row: auto;
  }

  .c-split__meta {
    grid-template-columns: 1fr;
  }
}

.c-split__media img,
.c-split__media video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.c-section {
  margin-bottom: calc(var(--margin) * 3);
}

.c-section__header {
  margin-bottom: var(--margin);
}

.c-section-label,
.c-section__title {
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.c-section-title,
.c-section__title {
  text-transform: uppercase;
  margin-bottom: var(--margin);
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: var(--margin);
  gap: var(--margin);
}

.c-card {
  background: var(--color-card-background);
  border-radius: 16px;
  overflow: hidden;
}

.c-card--plain {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: var(--margin);
}

.c-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-card__content {
  padding: var(--margin);
}

.c-card__tag {
  text-transform: uppercase;
  font-size: var(--font-size--s);
  opacity: 0.7;
}

.c-card__label {
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--font-size--s);
  margin-bottom: 0.35rem;
  color: var(--color-text);
  color: var(--accent, var(--color-text));
}

.c-card__meta {
  opacity: 0.6;
}

.c-collapsible {
  max-height: 500px;
  max-height: var(--collapsible-max, 500px);
  overflow: hidden;
  position: relative;
}

.c-collapsible.is-expanded {
  max-height: none;
}

.c-collapsible__toggle {
  margin-top: var(--margin);
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  text-align: left;
}

.c-collapsible__toggle[hidden] {
  display: none;
}

.c-collapsible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-background) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.c-collapsible.is-expanded::after {
  opacity: 0;
}

.c-table {
  margin-bottom: calc(var(--margin) * 3);
}

.c-table__header,
.c-table__row {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-columns: var(--table-columns, 1fr);
  grid-gap: var(--margin);
  gap: var(--margin);
  padding: var(--margin) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--margin-l);
}

.c-table__header:last-child, .c-table__row:last-child {
    border-bottom: 1px solid var(--color-border);
  }

.c-table__name {
  grid-column: span 2;
}

.c-table__row--link {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.c-table__row--link:hover {
  background: var(--color-card-background);
}

.c-table__header {
  text-transform: uppercase;
  opacity: 0.6;
  border-top: 1px solid var(--color-border);
}

.c-table__row a {
  justify-self: end;
  text-decoration: none;
}

.c-table__accent {
  color: var(--color-text);
  color: var(--accent, var(--color-text));
}

@media (max-width: 1024px) {
  .c-table__header {
    display: none;
  }

  .c-table__row {
    grid-template-columns: 1fr;
    gap: calc(var(--margin) / 2);
    padding: calc(var(--margin) / 2) 0;
  }

  .c-table__row > * {
    justify-self: start;
  }

  .c-table__row a {
    justify-self: start;
  }

  .c-table__name {
    grid-column: auto;
  }
}

.c-team {
  display: grid;
  grid-gap: var(--margin);
  gap: var(--margin);
}

.c-team__member {
  padding: var(--margin);
  border-radius: 16px;
  background: var(--color-card-background);
  transition: background 0.2s ease-out;
  cursor: pointer;
}

.c-team__member:hover {
  background: var(--color-card-background-hover);
}

.c-team__toggle {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  grid-gap: var(--margin);
  gap: var(--margin);
  width: 100%;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
  cursor: inherit;
  padding: 0;
}

.c-team__icon {
  justify-self: end;
  position: relative;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease-out;
}

.c-team__icon::before,
.c-team__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.c-team__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-team__member.is-open .c-team__icon {
  transform: rotate(45deg);
}

.c-team__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--margin);
  gap: var(--margin);
  margin-top: var(--margin);
  align-items: start;
}

.c-team__media,
.c-team__text {
  grid-column: 1;
}

.c-team__media {
  margin-bottom: var(--margin);
}

.c-team__info {
  grid-column: 2;
}

.c-team__content[hidden] {
  display: none;
}

.c-team__media img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.c-team__info a {
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
}

.c-team__contact a {
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: var(--margin);
  gap: var(--margin);
}

.c-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--margin);
  margin-top: calc(var(--margin) * 3);
}

.c-footer-actions__socials a {
  display: block;
  text-decoration: none;
}

.c-footer-actions__newsletter {
  text-decoration: none;
  /* font-weight: 600; */
}

.u-clearfix {
  @include clear;
}

.u-display-block {
	display: block;
}

.u-vertical-center {
  display: table;
  height: 100%;
  width: 100%;
}

.u-vertical-center__content {
  display: table-cell;
  vertical-align: middle;
}

.u-float--left {
	float:left !important;
}

.u-float--mid-left {
  float:left !important;
  margin-left: 6.66vw !important;
}

.u-float--center {
  float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.u-float--mid-right {
  float:right !important;
  margin-right: 6.66vw !important;
}

.u-float--right {
	float:right !important;
}

.u-fixed--top-left {
  position: fixed;
  top: 0;
  left: 0;
}

.u-fixed--top-right {
  position: fixed;
  top: 0;
  right: 0;
}

.u-fixed--bottom-left {
  position: fixed;
  bottom: 0;
  left: 0;
}

.u-fixed--bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
}

.u-no-padding-top {
  padding-top: 0 !important;
}

.u-no-padding-bottom {
  padding-bottom: 0 !important;
}

.u-no-padding-left {
  padding-left: 0 !important;
}

.u-no-padding-right {
  padding-right: 0 !important;
}

/* Utility classes */

.u-hidden,
.is-hidden {
  display: none !important;
}

.u-visible,
.is-visible {
  display: block !important;
}

.u-visible-inline {
  display: inline !important;
}

.u-visible-inline-block {
  display: inline-block !important;
}

.u-visible-flex {
  display: flex !important;
}

.u-visible-inline-flex {
  display: inline-flex !important;
}

@media(max-width: 520px) {

.u-visible-min-br-s {
	display: none
}
  }

@media(max-width: 768px) {

.u-visible-min-br-s-m {
	display: none
}
  }

@media(max-width: 1024px) {

.u-visible-min-br-m {
	display: none
}
  }

@media(max-width: 1360px) {

.u-visible-min-br-l {
	display: none
}
  }

@media(min-width: 520px) {

.u-hidden-max-br-s {
	display: none
}
  }

@media(min-width: 768px) {

.u-hidden-max-br-s-m {
	display: none
}
  }

@media(min-width: 1024px) {

.u-hidden-max-br-m {
	display: none
}
  }

@media(min-width: 1360px) {

.u-hidden-max-br-l {
	display: none
}
  }

.u-gradient:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  height: 12.5em;
  opacity: 1;
  pointer-events: none;
  transition: opacity var(--anim-speed) var(--anim-ease);
}

.u-gradient--top:before {
  top: 0;
}

.u-gradient--bottom:before {
  bottom: 0;
}

.u-gradient--totop:before {
  background: linear-gradient(
    to top,
    var(--color-gradient-from) 12.5%,
    var(--color-gradient-to)
  );
}

.u-gradient--tobottom:before {
  background: linear-gradient(
    to bottom,
    var(--color-gradient-from) 12.5%,
    var(--color-gradient-to)
  );
}

.u-gradient--toggle:before {
  opacity: 0;
}

.u-gradient--toggle.has-gradient:before {
  opacity: 1;
}

.u-gradient--toggle.has-gradient--absolute:before {
  position: absolute;
}

.u-has-glyph:before, .u-has-glyph-before:before {
    transition: transform 0.3s ease;
    font-size: 95%;
    display:inline-block;
    width: 0.7em;

    transform: translateX(0em);
    margin-right: 0.5em;
    margin-top: auto;
    margin-bottom: auto;

    transition: transform var(--anim-speed) ease;
    /* font-size: 100%;
    display:inline-block;
    width: 0.7em;
    transform: translateX(-0.3em);
    margin-right: 0.3em;
    margin-top: 0px;
    margin-bottom: auto; */
  }
  .u-has-glyph--left:before, .u-has-glyph-before--left:before {
      content: '←';
    }
  .u-has-glyph--right:before, .u-has-glyph-before--right:before {
      content: '→';
    }
  .u-has-glyph--up:before, .u-has-glyph-before--up:before {
      content: '↑';
    }
  .u-has-glyph--down:before, .u-has-glyph-before--down:before {
      content: '↓';
    }
  .u-has-glyph--upper-left:before, .u-has-glyph-before--upper-left:before {
      content: '↖';
    }
  .u-has-glyph--upper-right:before, .u-has-glyph-before--upper-right:before {
      content: '↗';
    }
  .u-has-glyph--lower-right:before, .u-has-glyph-before--lower-right:before {
      content: '↘';
    }
  .u-has-glyph--lower-left:before, .u-has-glyph-before--lower-left:before {
      content: '↙';
    }
  .u-has-glyph--plus:before, .u-has-glyph--more:before, .u-has-glyph-before--plus:before, .u-has-glyph-before--more:before {
      content: '+';
    	@include transform(rotate(0deg));
      transform: rotate(0deg);
    }
  .u-has-glyph--plus:hover:before, .u-has-glyph--more:hover:before, .u-has-glyph-before--plus:hover:before, .u-has-glyph-before--more:hover:before {
          transform: rotate(90deg);
  		}
  .u-has-glyph--minus:before, .u-has-glyph--less:before, .u-has-glyph-before--minus:before, .u-has-glyph-before--less:before {
      content: '−';
    }

.u-has-glyph-before:hover:before {
    /* transform: translateX(0.4em); */
    transform: translateX(-0.2em);
  }

.u-has-glyph-after:after {
    transition: transform 0.3s ease;
    font-size: 95%;
    display:inline-block;
    width: 0.7em;

    transform: translateX(0em);
    margin-top: auto;
    margin-bottom: auto;
  }

.u-has-glyph-after--left:after {
      content: '←';
    }

.u-has-glyph-after--right:after {
      content: '→';
    }

.u-has-glyph-after--up:after {
      content: '↑';
    }

.u-has-glyph-after--down:after {
      content: '↓';
    }

.u-has-glyph-after--upper-left:after {
      content: '↖';
    }

.u-has-glyph-after--upper-right:after {
      content: '↗';
    }

.u-has-glyph-after--lower-right:after {
      content: '↘';
    }

.u-has-glyph-after--lower-left:after {
      content: '↙';
    }

.u-has-glyph-after--plus:after, .u-has-glyph-after--more:after {
      content: '+';
    }

.u-has-glyph-after--minus:after, .u-has-glyph-after--less:after {
      content: '−';
    }


.u-has-glyph-after:hover:after {
    transform: translateX(0.2em);
  }
/* Settings */

/* Base */

/* Group */

/* Components */

/* @import 'components/c.nav';
@import 'components/c.card';
@import 'components/c.block'; */


/* Utilities */


