/* CSS - Reset */
/* Base Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time,
mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Typography */
body {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}

/* Forms and Inputs */
input, select, textarea, button {
  vertical-align: middle;
  -webkit-appearance: none;
  border-radius: 0;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Horizontal Rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* Universal Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* iOS Video Border Fix */
video {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

/* Responsive Display Helpers */
.show-for-small-only,
.show-for-medium-only,
.show-for-large-only {
  display: none;
}

.show-for-xlarge-up {
  display: block;
}

/* Utility */
.clear {
  clear: both;
}

@keyframes button-line-anim-in {
  0% {
    transform-origin: left;
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes button-line-anim-out {
  0% {
    transform-origin: right;
    transform: scaleX(1);
    opacity: 1;
  }
  95% {
    transform: scaleX(0.05);
    opacity: 1;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
    opacity: 0;
  }
}
/* Fonts here */
/*
@font-face {
    font-family: 'Mack';
    src: url('../fonts/Mack-Bold.woff') format('woff'), url('../fonts/Mack-Bold.woff2') format('woff2');
    font-weight: 600;
}
*/
:root {
  --site-font-pn: "neue-haas-unica", sans-serif;
  --site-font-sn: "tenez", sans-serif;
}

:root {
  --site-basecolor: #F1EDE5;
  --site-basecolor2: #90806C;
  --site-basecolor3: #727272;
  --site-titlecolor: var(--site-basecolor2);
  --site-textcolor: var(--site-basecolor3);
  --site-linkcolor: var(--site-basecolor3);
  --site-border-color: var(--site-basecolor2);
  --site-footertextcolor: var(--site-basecolor3);
  --site-navhovercolor: var(--site-basecolor3);
  --site-linebutton-color: var(--site-basecolor2);
  --site-linebutton-colorhover: #CB6015;
  --site-linebutton-linecolor: rgba(152,56,8,.3);
  --site-linebutton-linehovercolor: #CB6015;
  --site-galleryoverlay-color: var(--site-basecolor2);
  --site-gallerycaption-bgcolor: var(--site-basecolor3);
  --site-gallerycaption-textcolor: #fff;
}

/*
:root, html.prefers-light {
    --site-basecolor        : #ffffff;
    --site-basecolor2       : #000000;

    --site-textcolor        : #000000;
    --site-linkcolor        : #0000EE;
}

html.prefers-dark {
    --site-basecolor        : #ffffff;
    --site-basecolor2       : #000000;

    --site-textcolor        : #000000;
    --site-linkcolor        : #0000EE;
}

@media (prefered-color-scheme: dark) {
    :root {
        --site-basecolor        : #ffffff;
        --site-basecolor2       : #000000;

        --site-textcolor        : #000000;
        --site-linkcolor        : #0000EE;
    }
}
*/
.show-for-tabletportrait-only,
.show-for-tabletlandscape-only,
.show-for-smalldesktop-only,
.show-for-middesktop-only,
.show-for-largedesktop-up {
  display: none;
}

.show-for-mobile-only {
  display: block;
}

@media (min-width: 600px) {
  .show-for-mobile-only,
  .show-for-tabletlandscape-only,
  .show-for-smalldesktop-only,
  .show-for-middesktop-only,
  .show-for-largedesktop-up {
    display: none;
  }
  .show-for-tabletportrait-only {
    display: block;
  }
}
@media (min-width: 950px) {
  .show-for-mobile-only,
  .show-for-tabletportrait-only,
  .show-for-smalldesktop-only,
  .show-for-middesktop-only,
  .show-for-largedesktop-up {
    display: none;
  }
  .show-for-tabletlandscape-only {
    display: block;
  }
}
@media (min-width: 1018px) {
  .show-for-mobile-only,
  .show-for-tabletportrait-only,
  .show-for-tabletlandscape-only,
  .show-for-middesktop-only,
  .show-for-largedesktop-up {
    display: none;
  }
  .show-for-smalldesktop-only {
    display: block;
  }
}
@media (min-width: 1275px) {
  .show-for-mobile-only,
  .show-for-tabletportrait-only,
  .show-for-tabletlandscape-only,
  .show-for-smalldesktop-only,
  .show-for-largedesktop-up {
    display: none;
  }
  .show-for-middesktop-only {
    display: block;
  }
}
@media (min-width: 1921px) {
  .show-for-mobile-only,
  .show-for-tabletportrait-only,
  .show-for-tabletlandscape-only,
  .show-for-smalldesktop-only,
  .show-for-middesktop-only {
    display: none;
  }
  .show-for-largedesktop-up {
    display: block;
  }
}
:root {
  --site-wrapper-padding: 25px;
  --site-page-maxwidth: 1780px;
  --site-headerfooter-padding: var(--site-wrapper-padding);
  --site-borderline-gap: 4px;
  --site-section-maxwidth: calc(1360px + var(--site-wrapper-padding) * 2);
  --site-section-marginbottom: 100px;
  --site-textpadleft: 0px;
}
@media (min-width: 600px) {
  :root {
    --site-wrapper-padding: 40px;
    --site-section-marginbottom: 80px;
  }
}
@media (min-width: 950px) {
  :root {
    --site-wrapper-padding: 60px;
    --site-textpadleft: 60px;
    --site-headerfooter-padding: 60px;
  }
}
@media (min-width: 1275px) {
  :root {
    --site-section-marginbottom: 100px;
  }
}
@media (min-width: 1681px) {
  :root {
    --site-section-marginbottom: 150px;
  }
}

:root {
  --site-section-title-size: 2rem;
  --site-section-title-lineheight: calc(38 / 32);
  --site-section-subtitle-size: 1rem;
  --site-section-subtitle-lineheight: calc(24 / 16);
  --site-bodytext-size: 1.125rem;
  --site-bodytext-lineheight: 1.5;
}
@media (min-width: 600px) {
  :root {
    --site-bodytext-size: 1rem;
  }
}
@media (min-width: 1275px) {
  :root {
    --site-section-title-size: 2.25rem;
  }
}
@media (min-width: 1681px) {
  :root {
    --site-section-title-size: 2.625rem;
    --site-section-title-lineheight: calc(58 / 48);
    --site-section-subtitle-size: 1.125rem;
    --site-section-subtitle-lineheight: calc(26 / 18);
    --site-bodytext-size: 1.25rem;
  }
}

.o-imgbg, .o-img-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
}
.o-imgbg img, .o-img-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.o-imgbg.nocover, .o-img-bg.nocover {
  display: initial;
  float: none;
  position: relative;
  top: auto;
  left: auto;
}
.o-imgbg.nocover img, .o-img-bg.nocover img {
  object-fit: initial;
}

.o-img-fit, .o-imgfit {
  width: 100%;
  position: relative;
  height: auto;
}
.o-img-fit img, .o-imgfit img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.o-img-htfit {
  width: max-content;
  height: 100%;
  position: relative;
}
.o-img-htfit img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.o-imgfit.compat-object-fit {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  box-sizing: border-box;
}
.o-imgfit.compat-object-fit .imgbg {
  display: none;
}

.o-imgfull {
  width: 100%;
  height: auto;
  display: block;
}
.o-imgfull img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.o-videobg, .o-video-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.o-videobg video, .o-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.o-img-node {
  --_imgnodear: 1;
  width: 100%;
  height: max-content;
  display: grid;
  grid-template-columns: 1fr;
}
.o-img-node__inner {
  position: relative;
}
.o-img-node:has(.o-imgbg) .o-img-node__inner {
  aspect-ratio: var(--_imgnodear);
}
.o-img-node:has(.o-img-node__caption) {
  grid-template-rows: 1fr auto;
  grid-template-areas: "oimg" "ocaption";
}
.o-img-node:has(.o-img-node__caption) .o-img-node__caption {
  grid-area: ocaption;
  font-family: var(--site-font-pn);
  font-size: var(--site-imgcaption-size);
  color: var(--site-captiontextcolor);
  margin-top: 10px;
  line-height: 1.2;
}
@media (min-width: 1921px) {
  .o-img-node:has(.o-img-node__caption) .o-img-node__caption {
    margin-top: 15px;
  }
}
.o-img-node:has(.o-img-node__caption) .o-img-node__inner {
  grid-area: oimg;
}

html, body {
  font-family: var(--site-font-pn);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  color: var(--site-textcolor);
  -webkit-tap-highlight-color: transparent;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--site-basecolor);
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  width: 100%;
  font-size: 1rem;
}
body.smooth {
  scroll-behavior: smooth;
}

.touch body {
  -webkit-overflow-scrolling: touch;
}
.touch body.menu-on, .touch body.popup--open, .touch body.dpopup--open {
  touch-action: none;
}
.touch body.menu-on .cus-smooth-scroll, .touch body.popup--open .cus-smooth-scroll, .touch body.dpopup--open .cus-smooth-scroll {
  touch-action: none;
  pointer-events: none;
}

html.noscroll {
  overflow: clip;
}
html.noscroll .scroll-lock-wrapper {
  /*position: fixed;
  left: 0;
  right: 0;*/
}

.l-wrapper {
  width: 100%;
  position: relative;
  margin: auto;
}

.page-maincontent:not(:has(.section-masthead)) {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  /*
  &:not(:has(.section-masthead)) {
      margin-top: 240px;

      @include tabletPortraitUp() {
          margin-top: 280px;
      }
  }
  */
}

.nobreak {
  white-space: nowrap;
}

p, ul, ol {
  line-height: var(--site-bodytext-lineheight, 1.4);
  font-size: var(--site-bodytext-size, 1rem);
  margin-bottom: 20px;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}

b, strong {
  font-weight: 600;
}

:root {
  --swup-transition-duration: 0.5s;
}

#transition_bg {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100lvh;
  background: var(--site-basecolor);
  z-index: 900;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: var(--swup-transition-duration) clip-path ease-in-out;
  will-change: clip-path;
}
html.swup-enabled.is-animating #transition_bg {
  clip-path: inset(0 0 0 0);
}

.header {
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
}
.header .logo {
  width: 199px;
  aspect-ratio: 199/42;
  position: absolute;
  left: 25px;
  top: 25px;
}
@media (min-width: 1275px) {
  .header .logo {
    left: 64px;
    top: 40px;
  }
}
.header .logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*@import 'layouts/s-longmasthead';
@import 'layouts/s-coltext'; 
@import 'layouts/s-documentary'; 
@import 'layouts/s-panzoom'; 
@import 'layouts/s-panzoomdrawer'; 
@import 'layouts/s-multicol-scroll';*/
.section-holding {
  width: 100%;
  height: 100lvh;
  position: relative;
  display: grid;
  grid-template-areas: "hmain";
}
.section-holding .holding-imgcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  grid-area: hmain;
  overflow: hidden;
}
.section-holding .holding-imgcontainer__item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section-holding .holding-imgcontainer:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
}
.section-holding .holding-textcontainer {
  grid-area: hmain;
  padding: 40px 25px;
  color: #fff;
  position: relative;
  align-self: end;
  font-weight: 400;
  font-size: 2rem;
  font-family: var(--site-font-sn);
}
@media (min-width: 1275px) {
  .section-holding .holding-textcontainer {
    font-size: 3rem;
    padding: 60px 64px;
  }
}

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