
@font-face {
    font-family: BebasNeue;
    font-weight: 200;
    src: url("fonts/bebasneue_light-webfont.woff") format("woff"), url("fonts/bebasneue_light-webfont.woff2") format("woff2");
}

@font-face {
    font-family: BebasNeue;
    font-weight: 300;
    src: url("fonts/bebasneue_thin-webfont.woff") format("woff"), url("fonts/bebasneue_thin-webfont.woff2") format("woff2");
}

@font-face {
    font-family: BebasNeue;
    font-weight: 300;
    src: url("fonts/bebasneue_book-webfont.woff") format("woff"), url("fonts/bebasneue_book-webfont.woff2") format("woff2");
}

@font-face {
    font-family: BebasNeue;
    font-weight: 400;
    src: url("fonts/bebasneue_regular-webfont.woff") format("woff"), url("fonts/bebasneue_regular-webfont.woff2") format("woff2");
}


@font-face {
    font-family: BebasNeue;
    font-weight: 700;
    src: url("fonts/bebasneue_bold-webfont.woff") format("woff"), url("fonts/bebasneue_bold-webfont.woff2") format("woff2");
}


@font-face {
    font-family: SourceSansPro;
    font-weight: 400;
    src: url("fonts/sourcesanspro-regular.woff") format("woff"), url("fonts/sourcesanspro-regular.woff2") format("woff"2);
}

@font-face {
    font-family: SourceSansPro;
    font-weight: 600;
    src: url("fonts/sourcesanspro-semibold.woff") format("woff"), url("fonts/sourcesanspro-semibold.woff2") format("woff"2);
}

@font-face {
    font-family: SourceSansPro;
    font-weight: 700;
    src: url("fonts/sourcesanspro-bold.woff") format("woff"), url("fonts/sourcesanspro-bold.woff2") format("woff"2);
}

#conbox {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 8px;
    background-color: blue;
    color: #fff;
    z-index: 20;
}

/*
Numeric keyword values
font-weight: 100;
font-weight: 200;
font-weight: 300; -ligth
font-weight: 400; - normal
font-weight: 600; - semi bold
font-weight: 700; - bold
font-weight: 800;
font-weight: 900;
*/

:root {
    --ratio: 1.45;
    --s-5: calc(var(--s-4) / var(--ratio));
    --s-4: calc(var(--s-3) / var(--ratio));
    --s-3: calc(var(--s-2) / var(--ratio));
    --s-2: calc(var(--s-1) / var(--ratio));
    --s-1: calc(var(--s0) / var(--ratio));
    --s0: 1rem;
    --s1: calc(var(--s0) * var(--ratio));
    --s2: calc(var(--s1) * var(--ratio));
    --s3: calc(var(--s2) * var(--ratio));
    --s4: calc(var(--s3) * var(--ratio));
    --s5: calc(var(--s4) * var(--ratio));
    --main-color: #bb9435;
    --main-color-translucent: rgba(187,148,53,0.6);
    /* pretend gold */
    --measure: 68ch;
    --narrow-width: 500px;
    --vlite-controlsColor: #bb9435;
}

html {
}

html.no-scroll {
    overscroll-behavior: none;
}

body {
    background-color: #000;
    color: #bb9435;
    font-family: SourceSansPro, arial, helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: BebasNeue;
    font-weight: 700;
    line-height: 0.9;
}

h1 span, h2 span, h1 b, h2 b {
    font-weight: 300;

}

.gap-top-300 {
    margin-top: 0.8rem;
}

.gap-top-400 {
    margin-top: 1rem;
}

.gap-top-500 {
    margin-top: 1.25rem;
}

.gap-top-600 {
    margin-top: 1.56rem;
}

.gap-top-700 {
    margin-top: 1.95rem;
}

.gap-top-800 {
    margin-top: 2.44rem
}

.gap-top-900 {
    margin-top: 3.05rem
}

.gap-top-1000 {
    margin-top: 3.81rem
}

.short-title {
    max-width: 25ch;
    max-inline-size: 25ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.title-text {
    font-family: BebasNeue;
    line-height: 1;
    font-weight: 700;
    font-size: var(--s2);
}

.title-text--tight {
    margin: var(--s-2) 0 var(--s-2) 0;
}

.title-text--highlight {
    color: #fff;
}

.title-text-narrow {
    font-family: BebasNeue;
    color: #fff;
    font-weight: 300;
    line-height: 0.9;
    font-size: var(--s2);
}

@media screen and ((max-width: 375px) and (max-height: 670px)) {

    .title-text {
        font-size: 1.6rem;
    }

    .title-text-narrow {
        font-size: 1.6rem;
    }


}

hr {
    border: none;
    width: 5ch;
    border-top: 3px solid var(--main-color);
}


a {
    color: var(--main-color);
}

ul[class],
ol[class] {
 list-style:none;
 max-inline-size: none;
 padding: 0;
}

label {
    text-align: left;
}

input {
    border: 1px solid #BB9435;
    padding: 0.6rem;
}

.hide-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.btn {
    border: 1px solid #BB9435;
    background-color: #BB9435;
    color: #222;
    padding: 0.5rem 1rem;
}

.tiled-bg {
    background: #000 url(../img/rose-tile-optim.svg) 0 0 repeat;
    background-size: 400px;
    position: fixed;
    height: 100%;
    width: 100%;
}

.sitebox {
    padding-bottom: 6rem;
}

.no-scroll .sitebox {
    padding-bottom: 0;
}

.sitebox.move {
    transform: translateY(-40px);
}


.prose > * + * {
    margin-top:  var(--s1, 1em);
}

.prose-form > * + * {
    margin-top:  var(--s0, 1em);
}

.text-middle {
    text-align: center;
}


.wrapper {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.33rem;
    position: relative;
}




.admin-logo {
    width: 80px;
}

.admin-header {
    padding: 2rem 0 0 0;
}

.admin-header__logo {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s1, 1rem);
  justify-content: flex-start;
  align-items: center;
}


.admin-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space, 1rem);
  justify-content: flex-start;
  align-items: center;
}


.main-nav {
    position: fixed;
    z-index: 600;
    width: 100%;
}


.switcher {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s1);
}

.switcher--no-gap {
    gap: 0;
    justify-content: center;
}

.switcher>* {
    flex-grow: 1;
    flex-basis: calc((30rem - 100%) * 999);
}

.switcher> :nth-last-child(n + 4),
.switcher> :nth-last-child(n + 4) ~ * {
    flex-basis: 100%;
}


.center {
    box-sizing: content-box;
    margin-inline: auto;
    max-inline-size: var(--measure);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.logos__logo {
    height: 140px;
    block-size: 140px;
    /*
    max-width: 400px;
    max-inline-size: 400px;
    */
    object-fit: contain;
}

.logos--main {
    margin-top: -114px;
}

.logos--top {
    padding: 1rem 0;
    width: 100%;
    z-index: 10;
    margin-top: 2rem;
}

.logos--fixed {
    display: flex;
}

.logos--relative {
    display: none;
}

.logos--login {
    margin-top: 5rem;
}

.logos__logo--top {
    height: 72px;
    block-size: 72px;
    /*
    max-width: 200px;
    max-inline-size: 200px;
    */
}

.logos--section {
    padding: 1rem;
    /*
    position: absolute;
    top: 0;
    left: 0;
    */
    width: 100%;
    z-index: 10;
}

.logos__logo--section {
    width: 4rem;
    inline-size: 4rem;
}

.model-viewer {
    width: 100%;
    height: 80vh;
    pointer-events: auto;
}

.model-viewer__model {
    width: 100%;
    height: 100%;
}

.touch-blocker {
    pointer-events: none;
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    height: 100%;
}


.gallery__item {
    z-index: 5;
    height: 100%;
}

.gallery__image {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    /*border: 1px solid var(--main-color-translucent);*/
    aspect-ratio: 16 / 9;
}

.gallery__image--pdf {
    /*height: 80%;*/
}

.pdf-poster img {
    display: block;
    margin: 4rem auto 1rem auto;
    width: 100%;
    max-width: 900px;
}

.sections {
    margin-inline: auto;
    max-inline-size: var(--narrow-width);
}

.scroll-snap {
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.sections-holder {
    /*scroll-behavior: smooth;*/
    padding-bottom: 30px;
}

.page-section--snap {
    -webkit-scroll-snap-align: center;
    scroll-snap-align: center;
    /*scroll-margin-block-start: 10px;*/
    height: 100vh;
    /*outline: 2px solid green;
    outline-offset: -2px;*/
    position: relative;

}


@media screen and (max-height: 680px) {

/*@media screen and (max-height: 350px) {*/
  
    /* switch off scroll snap to allow content to be visible */
    .scroll-snap {

        scroll-snap-type: none;
        scroll-snap-stop: normal;
        /*
        overflow-y: scroll; 
        scroll-behavior: smooth;
        */
    }

    .page-section--snap {
        height: auto;
        min-height: 600px;
    }

    /* hide fixed icons */
    .logos--fixed {
        display: none;
    }

    .logos--relative {
        display: flex;
        position: absolute;
    }


}


.sections__wrapper {
    /*overflow: hidden;*/
    position: relative;
    padding-inline: 1rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*padding-top: 114px;*/
    max-width: 1440px;
    margin: 0 auto;

}

.sections__wrapper::before {
    content: " ";
    display: block;
    width: 100%;
    height: 114px;
}


.sections__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.sections__copy {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

@media screen and (min-height: 600px) {

    .sections__copy {
        padding-top: 3rem;
        height: calc(100% - 114px);
    }

}

@media screen and (min-height: 900px) {

    .sections__copy {
        padding-top: 0;
        justify-content: center;
        height: calc(100% - 114px);
    }

}


/*
@media screen and (max-width: 600px) {

    .sections__content-middle > *:first-child {
        margin-top: -114px;
    }

}

@media screen and ((max-width: 600px) and (max-height: 860px)) {

    .sections__content-middle--copy > *:first-child {
        margin-top: 0;
    }

}
*/



.sections__wrapper--intro {
    padding: 0;
}

.sections__wrapper-copy {

}

.no-scroll .sections__wrapper {
   
}

.sections__wrapper--gallery {
    /*background: radial-gradient(circle, rgba(70, 70, 70, 1) 0%, rgba(0, 0, 0, 1) 90%);*/
    /*background: radial-gradient(circle, rgba(200, 200, 200, 0.6) 0%, rgba(0, 0, 0, 0) 60%);*/
    padding-inline: 0;
}

.section-glow {
    background: radial-gradient(circle, rgba(200, 200, 200, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
}


.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    max-height: 50vh;
}

.fullpage {

}

.fullpage__arrows {
    position: absolute;
    top: 50%;
    z-index: 30;
    width: 100%;
}

.fullpage__arrow {
    background-color: transparent;
    border: none;
    position: absolute;
}



.fullpage__arrow svg {
    fill: #bb9435;
    width: 30px;
}

@media screen and (min-width: 760px ) {
    .fullpage__arrow--next svg {
        width: initial;
    }
}


.fullpage__arrow--prev {
    left: 0.2rem;
    transform: translateY(-50%) scaleX(-1);
}

.fullpage__arrow--next {
    right: 0.2rem;
    transform: translateY(-50%);
}



.v-vlite {
  --vlite-colorPrimary: #bb9435;
  --vlite-controlsColor: #bb9435;
}

.v-bigPlay {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 173 172'%3E%3Cpath fill='%23bb9435' fill-rule='evenodd' d='M18 1c2.8 0 5.5.6 8 1.8l136.4 67a18 18 0 0 1 0 32.4L26 170a18 18 0 0 1-26-16.2V19C0 9 8 1 18 1Zm4 15.9a8 8 0 0 0-8 8V149a8 8 0 0 0 11.6 7.1l125-62.4a8 8 0 0 0 0-14.4l-125-61.7a8 8 0 0 0-3.6-.8Z'/%3E%3C/svg%3E");
}

.v-bigPlay svg {
    display: none;
}

model-viewer::part(default-progress-bar) {
    height: 18px;
    width: 80%;
    margin: 6rem auto;
    border: 1px solid rgba(200,200,200,0.7);
    border-radius: 6px;
    background-color: background: linear-gradient(90deg, rgba(187,148,53,0.8925770991990546) 34%, rgba(187,148,53,0.710504270067402) 79%);
}

.hero-image-silo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    /*max-height: 80%;
    max-height: calc(100vh - 114px);*/
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
}


.copy-box {
    border-right: 2px solid #bb9435;
    padding: 0 var(--s1, 1em);
    max-width: 40ch;
}

@media screen and (max-width: 600px) {

    .copy-box p {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}



.copy-box:last-child {
    border-right: none;
}

.copy-box hr {
        display: none;
}

@media screen and (max-width: 520px) {
    .copy-box {
        border: none;        
    }

    .copy-box hr {
        display: block;
    }
}

.mu-nav {
    position: absolute;
    width: 100%;
}

.mu-nav__toggle {
    display: block;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    height: 25px;
    width: 50px;
    background: transparent;
    border: none;
    padding: 0;
}

.mu-nav__icon {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotateZ(180deg);
    transition: 200ms linear;
}

.is-active + .mu-nav__toggle .mu-nav__icon {
    transform: rotateZ(0deg);
}

ul.mu-nav__list {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(0,0,0,0.8);
    padding: 3rem 1rem 1rem 1rem;
}

.mu-nav > * {
  flex-grow: 1;
  flex-basis: calc(( 30rem - 100%) * 999);
}

.mu-nav__item {
    font-family: BebasNeue;
    color: #bb9435;
    font-weight: 400;
    line-height: 0.9;
    font-size: 1.8rem;
}

.mu-nav__item a {
    text-decoration: none;
}

.js .mu-nav__list {
   transition: transform 200ms linear;
   transform: translateY(-100%);
 }
 .js .mu-nav__list.is-active {
   transform: translateY(0);
 }

.btn-fancy {
    font-family: BebasNeue;
    border: none;
    background-color: #bb9435;
    color: #000;
    font-weight: 700;
    line-height: 1;
    font-size: 1.6rem;
    text-decoration: none;
    padding: 0.3rem 2rem;
    border-radius: 6px;
}

.login-fields {
    max-width: 40ch;
    margin: 0 auto;
}

.login-field {

}

.login-field__label {
    display: block;
}

.login-field__input {
    background-color: transparent;
    border: 1px solid #BB9435;
    color: #fff;
    padding: 0.6rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
    display: inline-block;
}

.logout {
    font-size: 0.9rem;
    position: fixed;
    z-index: 300;
    bottom: 10px;
    left: 10px;
}

