
@import url(fonts.css);
:root {
  --cols: 12;
  --cols-max: calc(var(--cols) + 1);
  --gutter: 20px;
  --margin: var(--gutter);
  --padding: var(--margin);
  --padding-top: 3.5rem;
  --cream: #F5F2E5;
  --red: #831818;
  --darkgreen: #00210C;
  --blue: #ADE9E1;
  --orange: #F7BB90;
  --basepx: 18;
  --base: 0.9375vw;
  --mgh: calc(1rem * (420 / var(--basepx)));
  --xlh: calc(1rem * (255 / var(--basepx)));
  --lh: calc(1rem * (190 / var(--basepx)));
  --bh: calc(1rem * (125 / var(--basepx)));
  --mh: calc(1rem * (40 / var(--basepx)));
  --sh: calc(1rem * (27 / var(--basepx)));
  --xsh: calc(1rem * (18 / var(--basepx)));
  --lt: calc(1rem * (27 / var(--basepx)));
  --mt: 1rem;
  --st: calc(1rem * (14 / var(--basepx)));
  --tablet-breakpoint: 1024px;
  --mobile-breakpoint: 600px; }
  @media screen and (max-width: 1024px) {
    :root {
      --base: 4vw;
      --gutter: 20px;
      --cols: 6;
      --padding-top: 6rem;
      --mgh: calc(1rem * (100 / var(--basepx)));
      --xlh: calc(1rem * (100 / var(--basepx)));
      --lh: calc(1rem * (70 / var(--basepx)));
      --bh: calc(1rem * (70 / var(--basepx)));
      --mh: calc(1rem * (24 / var(--basepx)));
      --sh: calc(1rem * (20 / var(--basepx))); } }
  @media screen and (max-width: 600px) {
    :root {
      --cols: 6; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility !important; }

html, body {
  position: relative;
  background: var(--cream);
  color: var(--red); }
  @media screen and (max-width: 600px) {
    html, body {
      overflow-x: hidden; } }

html {
  font-size: var(--base); }

body {
  font-family: 'FT System Blank';
  font-weight: 500;
  overflow-x: hidden; }

body.no-scroll {
  overflow-y: hidden; }

.no-pointer {
  pointer-events: none; }

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

.cta {
  background: var(--red);
  color: var(--cream);
  padding: 0.3em 1em 0.5em;
  border-radius: 0.4em;
  cursor: pointer;
  font-family: 'FT System Blank';
  font-weight: 500;
  font-size: 1rem;
  width: max-content;
  transition: background 0.1s, color 0.1s; }

.scroll-button {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default; }
  .scroll-button a {
    color: var(--orange);
    pointer-events: none;
    margin-bottom: 1rem; }

.image {
  position: relative; }
  .image[data-ratio='square'] {
    aspect-ratio: 1 / 1; }
    @supports not (aspect-ratio: auto) {
      .image[data-ratio='square'] {
        padding-top: 100%;
        height: 0;
        position: relative;
        overflow: hidden; } }
  .image[data-ratio='landscape'] {
    aspect-ratio: 3 / 2; }
    @supports not (aspect-ratio: auto) {
      .image[data-ratio='landscape'] {
        padding-top: 66.66666667%;
        height: 0;
        position: relative;
        overflow: hidden; } }

.image img {
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%; }

.image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none; }

.image[data-ratio='x'][data-padding='ignore-padding'] img {
  position: relative;
  object-fit: cover;
  height: 100%;
  object-position: var(--focalX) var(--focalY); }

.image.lazy {
  background: black; }

.image.lazy img {
  opacity: 0;
  transition: 0.4s; }

.image.lazy.loaded img {
  opacity: 1; }

.grid-container {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  column-gap: var(--gutter); }

.subpage-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 200; }
  .subpage-container:not(.active) {
    opacity: 0;
    pointer-events: none; }
  .subpage-container main {
    min-height: 100%; }

main nav.main-navigation {
  opacity: 1; }

.subpage-back {
  position: fixed;
  z-index: 10;
  top: var(--margin);
  left: var(--margin);
  line-height: 1em; }
  .subpage-back a {
    display: flex;
    align-items: center; }
    .subpage-back a svg {
      margin-right: 1rem; }
  @media screen and (max-width: 600px) {
    .subpage-back {
      top: 0.8rem;
      left: 0.8rem; }
      .subpage-back span {
        display: none; } }

footer {
  position: relative;
  z-index: 20;
  background: var(--darkgreen);
  height: 80vh;
  width: 100%;
  color: var(--cream);
  padding: var(--margin);
  padding-top: var(--margin);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 600px) {
    footer {
      height: 100vh;
      display: flex;
      flex-direction: column;
      padding: var(--margin); } }
  footer .footer-text {
    font-family: 'BrightonSH';
    line-height: 0.85em;
    font-size: 5rem;
    width: 60%;
    text-align: center;
    color: var(--orange); }
    @media screen and (max-width: 600px) {
      footer .footer-text {
        font-size: 2.5rem;
        width: 80%; } }
  footer .contact-bar {
    margin-top: 4rem;
    width: 50%;
    color: var(--orange);
    justify-content: center; }
    @media screen and (max-width: 600px) {
      footer .contact-bar {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        text-align: center;
        width: auto;
        gap: 2rem; }
        footer .contact-bar a {
          display: block;
          margin-left: 0;
          margin-top: 0.5rem; } }
    footer .contact-bar a {
      background: var(--darkgreen);
      border: 2px solid var(--orange); }
      footer .contact-bar a:hover {
        background: var(--orange);
        color: var(--darkgreen); }
  footer .footer-logo {
    position: absolute;
    bottom: var(--margin);
    left: var(--margin);
    width: 20vw; }
    @media screen and (max-width: 600px) {
      footer .footer-logo {
        width: 40vw; } }
    footer .footer-logo svg {
      object-fit: contain;
      height: 100%;
      width: 100%; }
    footer .footer-logo svg path {
      fill: var(--blue); }
  footer .footer-data {
    position: absolute;
    bottom: var(--margin);
    right: var(--margin);
    color: var(--blue); }
    @media screen and (max-width: 600px) {
      footer .footer-data {
        font-size: 0.8rem; } }

nav.main-navigation {
  position: fixed;
  z-index: 50;
  top: var(--margin);
  right: var(--margin);
  opacity: 0;
  transition: 0.2s; }
  @media screen and (max-width: 600px) {
    nav.main-navigation {
      top: 1.5rem; } }
  nav.main-navigation.visible {
    opacity: 1; }
  nav.main-navigation ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 1.5rem; }
    @media screen and (max-width: 600px) {
      nav.main-navigation ul {
        flex-direction: column;
        align-items: end;
        gap: .5rem; }
        nav.main-navigation ul li:last-child {
          margin-top: .5rem; } }
    nav.main-navigation ul li.cta:hover {
      background: var(--darkgreen); }
    nav.main-navigation ul li:not(.cta):hover {
      color: var(--darkgreen); }
  @media screen and (max-width: 600px) {
    nav.main-navigation.collaborate-header {
      opacity: 0; } }
  nav.main-navigation.collaborate-header li:not(.cta):hover {
    color: var(--darkgreen) !important; }
  nav.main-navigation.collaborate-header li.cta:hover {
    background: var(--darkgreen) !important;
    color: var(--orange) !important; }


main[data-scene="about"] {
  background: var(--darkgreen);
  color: var(--cream);
  padding: var(--margin);
  overflow-x: hidden; }
  main[data-scene="about"] .main-navigation ul li.cta:hover {
    background: var(--orange);
    color: var(--darkgreen); }
  main[data-scene="about"] .main-navigation ul li:not(.cta):hover {
    color: var(--orange); }
  main[data-scene="about"] .about-intro {
    overflow: visible;
    position: relative;
    padding-bottom: var(--margin);
    height: calc(100vh - var(--margin));
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    column-gap: var(--gutter); }
    @media screen and (max-width: 600px) {
      main[data-scene="about"] .about-intro {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: var(--gutter);
        height: auto; } }
    main[data-scene="about"] .about-intro .about-text {
      grid-column: 1 / 13;
      margin-top: 5rem;
      gap: 4rem;
      display: flex; }
      @media screen and (max-width: 600px) {
        main[data-scene="about"] .about-intro .about-text {
          flex-direction: column; } }
      main[data-scene="about"] .about-intro .about-text .column {
        flex: 1; }
      main[data-scene="about"] .about-intro .about-text .indent {
        margin-top: 1em;
        color: var(--orange); }
      main[data-scene="about"] .about-intro .about-text .column h3 {
        margin-top: 1em;
        color: var(--orange);
        position: relative;
        top: -1em;
        margin-right: 0.5em;
        text-transform: uppercase;
        font-size: inherit;
        font-weight: inherit; }
      main[data-scene="about"] .about-intro .about-text .column ul {
        padding-left: 1rem; }
        main[data-scene="about"] .about-intro .about-text .column ul li:not(:first-child) {
          margin-top: 0.5rem; }
      @media screen and (max-width: 600px) {
        main[data-scene="about"] .about-intro .about-text {
          grid-column: 1 / 7;
          column-count: 1;
          grid-row: 2;
          font-size: 0.8rem;
          margin-top: 3rem; } }
      main[data-scene="about"] .about-intro .about-text p:first-of-type {
        display: inline; }
      main[data-scene="about"] .about-intro .about-text p + p {
        margin-top: 1.5em; }
      main[data-scene="about"] .about-intro .about-text p a {
        text-decoration: underline; }
        main[data-scene="about"] .about-intro .about-text p a:hover {
          color: var(--orange); }
    main[data-scene="about"] .about-intro .about-image {
      align-self: flex-end;
      grid-column: 14 / 21;
      margin-top: 4rem; }
      @media screen and (max-width: 600px) {
        main[data-scene="about"] .about-intro .about-image {
          grid-column: 1 / 7;
          grid-row: 1;
          margin-top: 4rem; } }
      main[data-scene="about"] .about-intro .about-image figure {
        border-radius: 0.5rem;
        overflow: hidden; }
    main[data-scene="about"] .about-intro .scroll-button {
      transform: translateX(-50%);
      display: none; }
      @media screen and (max-width: 600px) {
        main[data-scene="about"] .about-intro .scroll-button {
          display: none; } }
  main[data-scene="about"] .about-people {
    margin-top: 10rem;
    margin-bottom: 30rem; }
    @media screen and (max-width: 600px) {
      main[data-scene="about"] .about-people {
        margin-top: 6rem;
        margin-bottom: 10rem; } }
    main[data-scene="about"] .about-people .person {
      display: grid;
      grid-template-columns: repeat(20, 1fr);
      column-gap: var(--gutter); }
      @media screen and (max-width: 600px) {
        main[data-scene="about"] .about-people .person {
          display: grid;
          grid-template-columns: repeat(6, 1fr);
          column-gap: var(--gutter); } }
      main[data-scene="about"] .about-people .person:not(:last-child) {
        margin-bottom: 13rem; }
        @media screen and (max-width: 600px) {
          main[data-scene="about"] .about-people .person:not(:last-child) {
            margin-bottom: 6rem; } }
      main[data-scene="about"] .about-people .person figure {
        grid-column: 3 / 7;
        align-self: flex-start;
        border-radius: 0.5rem;
        overflow: hidden;
        grid-row: span 3; }
        @media screen and (max-width: 600px) {
          main[data-scene="about"] .about-people .person figure {
            grid-column: 2 / 6;
            grid-row: 1; } }
      main[data-scene="about"] .about-people .person .person-info {
        grid-column: 8 / 21;
        display: grid;
        grid-template-columns: repeat(11, 1fr);
        column-gap: var(--gutter);
        align-items: flex-start;
        place-self: center;
        grid-row: 1 / span 3; }
        @media screen and (max-width: 600px) {
          main[data-scene="about"] .about-people .person .person-info {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            column-gap: var(--gutter);
            grid-column: 1 / 7;
            grid-row: 2; } }
        main[data-scene="about"] .about-people .person .person-info h2 {
          border: 1px solid var(--cream);
          grid-column: 1 / 12;
          width: max-content;
          font-weight: normal;
          text-transform: uppercase;
          font-size: inherit;
          padding: 0.2em 2.5em 0.3em;
          margin-bottom: 1.5rem;
          border-radius: 0.5rem; }
          @media screen and (max-width: 600px) {
            main[data-scene="about"] .about-people .person .person-info h2 {
              grid-column: 1 / 7;
              margin-top: 2rem; } }
        main[data-scene="about"] .about-people .person .person-info .person-description {
          grid-column: 1 / 7; }
          main[data-scene="about"] .about-people .person .person-info .person-description p + p {
            margin-top: 1.5rem; }
          @media screen and (max-width: 600px) {
            main[data-scene="about"] .about-people .person .person-info .person-description {
              font-size: 0.8rem; } }
        main[data-scene="about"] .about-people .person .person-info .person-contact {
          grid-column: 8 / 12; }
          @media screen and (max-width: 600px) {
            main[data-scene="about"] .about-people .person .person-info .person-contact {
              grid-column: 1 / 7;
              margin-top: 1rem;
              font-size: 0.8rem; } }
        main[data-scene="about"] .about-people .person .person-info .person-quote {
          grid-column: 2 / 11;
          font-family: 'BrightonSH';
          font-weight: bold;
          font-size: 3rem;
          margin-top: 2rem;
          line-height: 1em;
          color: #ADE9E1; }
          @media screen and (max-width: 600px) {
            main[data-scene="about"] .about-people .person .person-info .person-quote {
              grid-column: 1 / 7;
              font-size: 2rem;
              margin-top: 3rem; } }
      @media screen and (min-width: 600px) {
        main[data-scene="about"] .about-people .person:nth-child(even) figure {
          grid-column: 13 / span 4; }
        main[data-scene="about"] .about-people .person:nth-child(even) .person-info {
          grid-column: 1 / 13; }
          main[data-scene="about"] .about-people .person:nth-child(even) .person-info h2,
          main[data-scene="about"] .about-people .person:nth-child(even) .person-info .person-description {
            grid-column: 5 / 11; }
          main[data-scene="about"] .about-people .person:nth-child(even) .person-info .person-contact {
            grid-column: 2 / 5;
            grid-row: 2; }
          main[data-scene="about"] .about-people .person:nth-child(even) .person-info .person-quote {
            grid-column: 3 / 12;
            grid-row: 3; } }
  main[data-scene="about"] .footer-logo {
    width: 40vw; }
    main[data-scene="about"] .footer-logo svg {
      object-fit: contain;
      height: 100%;
      height: auto;
      width: 100%; }
    main[data-scene="about"] .footer-logo svg path {
      fill: var(--orange); }

main[data-scene="collaborate"] {
  background: var(--orange);
  color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; }
  main[data-scene="collaborate"] .main-navigation ul li.cta {
    color: #F9695E; }
  main[data-scene="collaborate"] .main-navigation ul li.cta:hover {
    background: var(--orange);
    color: var(--red); }
  main[data-scene="collaborate"] .main-navigation ul li:not(.cta):hover {
    color: var(--orange); }
  main[data-scene="collaborate"] h1 {
    font-family: 'BrightonSH';
    font-weight: normal;
    font-size: 3rem;
    width: 60%;
    line-height: 0.9em;
    text-align: center; }
    @media screen and (max-width: 600px) {
      main[data-scene="collaborate"] h1 {
        font-size: 2.5rem;
        width: 80%; } }
  main[data-scene="collaborate"] .give-description {
    width: 40%;
    text-transform: uppercase;
    text-align: center; }
    @media screen and (max-width: 600px) {
      main[data-scene="collaborate"] .give-description {
        width: 80%; } }
  main[data-scene="collaborate"] .subpage-back svg path {
    fill: var(--red); }

.contact-bar {
  margin: 4rem auto;
  display: flex;
  gap: 4rem;
  text-align: center;
  justify-content: center; }
  @media screen and (max-width: 600px) {
    .contact-bar {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      text-align: center;
      width: auto;
      gap: 2rem; }
      .contact-bar p {
        text-align: center; } }
  .contact-bar a {
    display: inline-block;
    background: var(--orange);
    border: 2px solid var(--red);
    padding: 0.6em 1.5em 0.7em;
    border-radius: 0.7rem;
    margin-top: 1rem;
    width: max-content; }
    .contact-bar a:hover {
      background: var(--red);
      color: var(--orange); }
    @media screen and (max-width: 600px) {
      .contact-bar a {
        margin-left: auto !important;
        margin-right: auto;
        margin-top: 0.5rem; } }

main[data-scene="give-present"] {
  background: #F9695E;
  color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; }
  main[data-scene="give-present"] .main-navigation ul li.cta {
    color: #F9695E; }
  main[data-scene="give-present"] .main-navigation ul li.cta:hover {
    background: var(--orange);
    color: var(--red); }
  main[data-scene="give-present"] .main-navigation ul li:not(.cta):hover {
    color: var(--orange); }
  main[data-scene="give-present"] h1 {
    font-family: 'BrightonSH';
    font-weight: normal;
    font-size: 5rem;
    width: 40%;
    line-height: 0.8em;
    text-align: center; }
    @media screen and (max-width: 600px) {
      main[data-scene="give-present"] h1 {
        font-size: 3rem;
        width: 80%; } }
  main[data-scene="give-present"] .give-description {
    width: 40%;
    text-transform: uppercase;
    text-align: center; }
    @media screen and (max-width: 600px) {
      main[data-scene="give-present"] .give-description {
        width: 80%; } }
  main[data-scene="give-present"] .subpage-back svg path {
    fill: var(--red); }

.contact-bar {
  margin: 4rem auto;
  display: flex;
  gap: 4rem; }
  @media screen and (max-width: 600px) {
    .contact-bar {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      text-align: center;
      width: auto;
      gap: 2rem; } }
  .contact-bar a {
    display: inline-block;
    background: var(--orange);
    border: 2px solid var(--red);
    padding: 0.6em 1.5em 0.7em;
    border-radius: 0.7rem;
    margin-left: 1rem; }
    .contact-bar a:hover {
      background: var(--red);
      color: var(--orange); }
    @media screen and (max-width: 600px) {
      .contact-bar a {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem; } }

.c-scrollbar {
  height: 100vh; }

.logo {
  position: fixed;
  bottom: calc(var(--margin) * 0.7);
  left: var(--margin);
  width: 16vw;
  --opacity: 0; }
  @media screen and (max-width: 600px) {
    .logo {
      width: 60vw; } }
  .logo svg {
    bottom: 0;
    position: absolute;
    object-fit: contain;
    height: 100%;
    height: auto;
    width: 100%; }
    .logo svg path {
      fill: var(--red); }

span.indent {
  position: relative;
  display: inline-block;
  top: -1em;
  margin-right: 0.5em;
  text-transform: uppercase; }

section.hero-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  cursor: pointer; }
  section.hero-image figure {
    width: 100%;
    height: 100vh; }
    section.hero-image figure img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  section.hero-image .hero-text {
    position: absolute;
    top: var(--margin);
    left: var(--margin);
    font-family: 'BrightonSH';
    color: #ADE9E1;
    font-size: 2.5rem;
    width: 50%;
    line-height: 0.9em; }
    @media screen and (max-width: 1024px) {
      section.hero-image .hero-text {
        font-size: 3rem; } }
    @media screen and (max-width: 600px) {
      section.hero-image .hero-text {
        font-size: 2rem;
        width: 80%; } }
    section.hero-image .hero-text span {
      color: #F9695E; }
  section.hero-image .hero-logo {
    position: absolute;
    bottom: 0;
    bottom: calc(var(--margin) * 0.7);
    left: var(--margin);
    width: 16vw; }
    @media screen and (max-width: 600px) {
      section.hero-image .hero-logo {
        width: 60vw; } }
    section.hero-image .hero-logo svg {
      bottom: 0;
      position: absolute;
      object-fit: contain;
      height: 100%;
      height: auto;
      width: 100%; }
      section.hero-image .hero-logo svg path {
        fill: #ADE9E1; }
  section.hero-image .hero-scroll {
    position: absolute;
    bottom: var(--margin);
    right: var(--margin);
    color: #ADE9E1;
    display: flex;
    align-items: center;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: bottom right; }
    section.hero-image .hero-scroll svg {
      margin-right: 1.5rem; }

.mission-text {
  position: relative;
  text-align: center; }
  @media screen and (max-width: 600px) {
    .mission-text {
      width: 70%;
      font-size: 0.8rem;
      margin-left: auto;
      margin-right: auto;
      margin-top: 120vh; } }

.mission-text-inner {
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 1; }
  .mission-text-inner.visible {
    opacity: 1; }
  .mission-text-inner.low-vis {
    opacity: 1; }
    @media screen and (max-width: 600px) {
      .mission-text-inner.low-vis {
        opacity: 1; } }
  @media screen and (max-width: 600px) {
    .mission-text-inner {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      width: 100%; } }
  .mission-text-inner .video-container {
    aspect-ratio: 16 / 9;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    display: flex; }
    @media screen and (max-width: 600px) {
      .mission-text-inner .video-container {
        width: calc(100vw - 2rem); } }
    .mission-text-inner .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0.5rem; }
    .mission-text-inner .video-container .poster {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: 0.2s;
      cursor: pointer; }
      .mission-text-inner .video-container .poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.5rem; }
      .mission-text-inner .video-container .poster svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        z-index: 5;
        transition: 0.2s; }
      .mission-text-inner .video-container .poster::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 0.5rem;
        transition: 0.3s; }
      .mission-text-inner .video-container .poster:hover::after {
        background: rgba(0, 0, 0, 0.1); }
      .mission-text-inner .video-container .poster:hover svg {
        transform: translate(-50%, -50%) scale(0.9); }
    .mission-text-inner .video-container.playing .poster {
      opacity: 0;
      pointer-events: none; }
  .mission-text-inner .scroll-button {
    transform: translateX(-50%);
    bottom: auto;
    top: 35vh;
    transition: 0.3s opacity;
    cursor: pointer; }
    @media screen and (max-width: 600px) {
      .mission-text-inner .scroll-button {
        opacity: 0; } }
    .mission-text-inner .scroll-button a {
      color: var(--red); }
    .mission-text-inner .scroll-button svg path {
      fill: var(--red); }
  .mission-text-inner.low-vis .scroll-button,
  .mission-text-inner.low-vis .video-container {
    opacity: 0;
    pointer-events: none; }

.spacer-scroll {
  background: var(--cream);
  height: 100vh;
  margin-top: 100vh; }

.products-scroll {
  position: relative;
  z-index: 3;
  margin-top: 180vh;
  padding-bottom: 10vh; }
  @media screen and (max-width: 600px) {
    .products-scroll {
      margin-top: 10vh; } }
  .products-scroll .product {
    width: 100%;
    height: 75vh;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    column-gap: var(--gutter); }
    @media screen and (max-width: 600px) {
      .products-scroll .product {
        height: 80vh; } }
    @media screen and (max-width: 600px) {
      .products-scroll .product {
        padding: var(--margin);
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: var(--gutter); } }
    .products-scroll .product .figure-container {
      grid-row: 1;
      grid-column: 6 / span 6;
      width: 100%;
      height: 80vh; }
      @media screen and (max-width: 600px) {
        .products-scroll .product .figure-container {
          grid-column: 1 / span 6;
          width: 80%;
          margin: auto; } }
    .products-scroll .product figure {
      background: none;
      height: 100% !important;
      padding-bottom: 0 !important; }
      .products-scroll .product figure img {
        object-fit: contain;
        height: 100%;
        width: 100%; }
    .products-scroll .product .product-info {
      position: relative;
      grid-row: 1;
      grid-column: 10 / span 5;
      opacity: 0;
      transition: opacity 0.4s, color 0.1s, background 0.1s;
      background: var(--darkgreen);
      color: var(--blue);
      padding: 0.8em 1.3em 3rem;
      border-radius: 0.5rem; }
      .products-scroll .product .product-info svg path {
        transition: fill 0.1s; }
      .products-scroll .product .product-info:hover {
        background: var(--red);
        color: var(--orange); }
        .products-scroll .product .product-info:hover svg path {
          fill: var(--orange); }
      .products-scroll .product .product-info h3 {
        font-weight: 500;
        text-transform: uppercase; }
      .products-scroll .product .product-info svg {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        width: 2rem; }
      .products-scroll .product .product-info a::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2; }
      .products-scroll .product .product-info.visible {
        opacity: 1; }
      @media screen and (max-width: 600px) {
        .products-scroll .product .product-info {
          font-size: 0.8rem;
          width: auto;
          grid-column: 1 / 5;
          padding: 0.8em 1.3em 2rem; } }
    .products-scroll .product:nth-child(even) .figure-container {
      grid-column: 12 / span 6; }
      @media screen and (max-width: 600px) {
        .products-scroll .product:nth-child(even) .figure-container {
          grid-column: 1 / span 6; } }
    .products-scroll .product:nth-child(even) .product-info {
      grid-row: 1;
      grid-column: 8 / span 5; }
      @media screen and (max-width: 600px) {
        .products-scroll .product:nth-child(even) .product-info {
          grid-column: 3 / 7;
          width: auto; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="social-vanilla-vaniljekranse"] .product-info {
        grid-column: 9 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="mark-hermann-filled-chocolates"] .product-info {
        grid-column: 10 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="social-brew-coffee"] .product-info {
        grid-column: 9 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="frederiksdal-cherry-liqueur"] .product-info {
        grid-column: 10 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="frederiksdal-cherry-wine"] .product-info {
        grid-column: 9 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="kandy-spices-christmas-spices"] .product-info {
        grid-column: 10 / span 5; } }
    @media screen and (min-width: 600px) {
      .products-scroll .product[data-slug="cytex-hand-disinfection"] .product-info {
        grid-column: 9 / span 5; } }

section.box {
  position: relative;
  z-index: 30;
  margin-bottom: 2vh;
  pointer-events: none; }
  section.box figure {
    width: 60%;
    height: 80vh;
    margin: auto;
    background: none !important; }
    @media screen and (max-width: 600px) {
      section.box figure {
        width: 100%;
        height: 50vh; } }

.cta-overlay {
  position: fixed;
  background: var(--darkgreen);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  background: #F9695E;
  width: 70%;
  padding: 4rem 6rem;
  border-radius: 0.5rem; }
  .cta-overlay:not(.active) {
    opacity: 0;
    pointer-events: none; }
  .cta-overlay .cta-title {
    font-family: 'BrightonSH';
    font-size: 4rem;
    text-align: center; }
  .cta-overlay .cta-close {
    position: absolute;
    top: 1rem;
    right: 1rem; }

main[data-scene="selection-criteria"] {
  background: var(--darkgreen);
  color: var(--cream);
  padding: var(--margin);
  overflow-x: hidden; }
  main[data-scene="selection-criteria"] .main-navigation ul li.cta:hover {
    background: var(--orange);
    color: var(--darkgreen); }
  main[data-scene="selection-criteria"] .main-navigation ul li:not(.cta):hover {
    color: var(--orange); }
  main[data-scene="selection-criteria"] .about-intro {
    overflow: visible;
    position: relative;
    padding-bottom: var(--margin);
    height: calc(100vh - var(--margin));
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    column-gap: var(--gutter); }
    @media screen and (max-width: 600px) {
      main[data-scene="selection-criteria"] .about-intro {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: var(--gutter);
        height: auto; } }
    main[data-scene="selection-criteria"] .about-intro .about-text {
      grid-column: 1 / 13;
      margin-top: 5rem;
      gap: 4rem;
      display: flex; }
      @media screen and (max-width: 600px) {
        main[data-scene="selection-criteria"] .about-intro .about-text {
          flex-direction: column; } }
      main[data-scene="selection-criteria"] .about-intro .about-text .column {
        flex: 1; }
      main[data-scene="selection-criteria"] .about-intro .about-text .indent {
        margin-top: 1em;
        color: var(--orange); }
      main[data-scene="selection-criteria"] .about-intro .about-text .column h3 {
        margin-top: 1em;
        color: var(--orange);
        position: relative;
        top: -1em;
        margin-right: 0.5em;
        text-transform: uppercase;
        font-size: inherit;
        font-weight: inherit; }
      main[data-scene="selection-criteria"] .about-intro .about-text .column ul {
        padding-left: 1rem; }
        main[data-scene="selection-criteria"] .about-intro .about-text .column ul li:not(:first-child) {
          margin-top: 0.5rem; }
      @media screen and (max-width: 600px) {
        main[data-scene="selection-criteria"] .about-intro .about-text {
          grid-column: 1 / 7;
          column-count: 1;
          grid-row: 2;
          font-size: 0.8rem;
          margin-top: 3rem; } }
      main[data-scene="selection-criteria"] .about-intro .about-text p:first-of-type {
        display: inline; }
      main[data-scene="selection-criteria"] .about-intro .about-text p + p {
        margin-top: 1.5em; }
      main[data-scene="selection-criteria"] .about-intro .about-text p a {
        text-decoration: underline; }
        main[data-scene="selection-criteria"] .about-intro .about-text p a:hover {
          color: var(--orange); }
    main[data-scene="selection-criteria"] .about-intro .about-image {
      align-self: flex-end;
      grid-column: 14 / 21;
      margin-top: 4rem; }
      @media screen and (max-width: 600px) {
        main[data-scene="selection-criteria"] .about-intro .about-image {
          grid-column: 1 / 7;
          grid-row: 1;
          margin-top: 4rem; } }
      main[data-scene="selection-criteria"] .about-intro .about-image figure {
        border-radius: 0.5rem;
        overflow: hidden; }
    main[data-scene="selection-criteria"] .about-intro .scroll-button {
      transform: translateX(-50%);
      display: none; }
      @media screen and (max-width: 600px) {
        main[data-scene="selection-criteria"] .about-intro .scroll-button {
          display: none; } }
  main[data-scene="selection-criteria"] .about-people {
    margin-top: 10rem;
    margin-bottom: 30rem; }
    @media screen and (max-width: 600px) {
      main[data-scene="selection-criteria"] .about-people {
        margin-top: 6rem;
        margin-bottom: 10rem; } }
    main[data-scene="selection-criteria"] .about-people .person {
      display: grid;
      grid-template-columns: repeat(20, 1fr);
      column-gap: var(--gutter); }
      @media screen and (max-width: 600px) {
        main[data-scene="selection-criteria"] .about-people .person {
          display: grid;
          grid-template-columns: repeat(6, 1fr);
          column-gap: var(--gutter); } }
      main[data-scene="selection-criteria"] .about-people .person:not(:last-child) {
        margin-bottom: 13rem; }
        @media screen and (max-width: 600px) {
          main[data-scene="selection-criteria"] .about-people .person:not(:last-child) {
            margin-bottom: 6rem; } }
      main[data-scene="selection-criteria"] .about-people .person figure {
        grid-column: 3 / 7;
        align-self: flex-start;
        border-radius: 0.5rem;
        overflow: hidden;
        grid-row: span 3; }
        @media screen and (max-width: 600px) {
          main[data-scene="selection-criteria"] .about-people .person figure {
            grid-column: 2 / 6;
            grid-row: 1; } }
      main[data-scene="selection-criteria"] .about-people .person .person-info {
        grid-column: 8 / 21;
        display: grid;
        grid-template-columns: repeat(11, 1fr);
        column-gap: var(--gutter);
        align-items: flex-start;
        place-self: center;
        grid-row: 1 / span 3; }
        @media screen and (max-width: 600px) {
          main[data-scene="selection-criteria"] .about-people .person .person-info {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            column-gap: var(--gutter);
            grid-column: 1 / 7;
            grid-row: 2; } }
        main[data-scene="selection-criteria"] .about-people .person .person-info h2 {
          border: 1px solid var(--cream);
          grid-column: 1 / 12;
          width: max-content;
          font-weight: normal;
          text-transform: uppercase;
          font-size: inherit;
          padding: 0.2em 2.5em 0.3em;
          margin-bottom: 1.5rem;
          border-radius: 0.5rem; }
          @media screen and (max-width: 600px) {
            main[data-scene="selection-criteria"] .about-people .person .person-info h2 {
              grid-column: 1 / 7;
              margin-top: 2rem; } }
        main[data-scene="selection-criteria"] .about-people .person .person-info .person-description {
          grid-column: 1 / 7; }
          main[data-scene="selection-criteria"] .about-people .person .person-info .person-description p + p {
            margin-top: 1.5rem; }
          @media screen and (max-width: 600px) {
            main[data-scene="selection-criteria"] .about-people .person .person-info .person-description {
              font-size: 0.8rem; } }
        main[data-scene="selection-criteria"] .about-people .person .person-info .person-contact {
          grid-column: 8 / 12; }
          @media screen and (max-width: 600px) {
            main[data-scene="selection-criteria"] .about-people .person .person-info .person-contact {
              grid-column: 1 / 7;
              margin-top: 1rem;
              font-size: 0.8rem; } }
        main[data-scene="selection-criteria"] .about-people .person .person-info .person-quote {
          grid-column: 2 / 11;
          font-family: 'BrightonSH';
          font-weight: bold;
          font-size: 3rem;
          margin-top: 2rem;
          line-height: 1em;
          color: #ADE9E1; }
          @media screen and (max-width: 600px) {
            main[data-scene="selection-criteria"] .about-people .person .person-info .person-quote {
              grid-column: 1 / 7;
              font-size: 2rem;
              margin-top: 3rem; } }
      @media screen and (min-width: 600px) {
        main[data-scene="selection-criteria"] .about-people .person:nth-child(even) figure {
          grid-column: 13 / span 4; }
        main[data-scene="selection-criteria"] .about-people .person:nth-child(even) .person-info {
          grid-column: 1 / 13; }
          main[data-scene="selection-criteria"] .about-people .person:nth-child(even) .person-info h2,
          main[data-scene="selection-criteria"] .about-people .person:nth-child(even) .person-info .person-description {
            grid-column: 5 / 11; }
          main[data-scene="selection-criteria"] .about-people .person:nth-child(even) .person-info .person-contact {
            grid-column: 2 / 5;
            grid-row: 2; }
          main[data-scene="selection-criteria"] .about-people .person:nth-child(even) .person-info .person-quote {
            grid-column: 3 / 12;
            grid-row: 3; } }
  main[data-scene="selection-criteria"] .footer-logo {
    width: 40vw; }
    main[data-scene="selection-criteria"] .footer-logo svg {
      object-fit: contain;
      height: 100%;
      height: auto;
      width: 100%; }
    main[data-scene="selection-criteria"] .footer-logo svg path {
      fill: var(--orange); }

main.single-product-scene {
  background: var(--cream);
  color: var(--darkgreen);
  padding-top: 7rem; }
  main.single-product-scene .subpage-back svg path {
    fill: var(--darkgreen); }
  main.single-product-scene .main-navigation ul li:not(.cta) {
    color: var(--red); }
  main.single-product-scene .main-navigation ul li.cta:hover {
    background: var(--orange);
    color: var(--red); }
  main.single-product-scene .main-navigation ul li:not(.cta):hover {
    color: var(--orange); }
  main.single-product-scene .product-info {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--gutter);
    padding: 0 6rem;
    padding-bottom: 10rem; }
    @media screen and (max-width: 600px) {
      main.single-product-scene .product-info {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: var(--gutter); } }
    main.single-product-scene .product-info .intro {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      column-gap: var(--gutter); }
    main.single-product-scene .product-info .product-teaser {
      grid-column: 1 / 6;
      font-size: 1.11rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      font-family: 'FT System Blank';
      font-weight: 350; }
      @media screen and (max-width: 600px) {
        main.single-product-scene .product-info .product-teaser {
          grid-column: 1 / -1;
          font-size: 0.8rem; } }
      main.single-product-scene .product-info .product-teaser h1 {
        margin-bottom: 3rem;
        font-family: 'BrightonSH';
        font-weight: 300;
        font-size: 3.44rem;
        line-height: 0.92em; }
        @media screen and (max-width: 600px) {
          main.single-product-scene .product-info .product-teaser h1 {
            font-size: 1.5rem;
            margin-top: 2rem; } }
        main.single-product-scene .product-info .product-teaser h1 span {
          display: block; }
      main.single-product-scene .product-info .product-teaser h3 {
        font-size: 1.11rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 1rem;
        margin-top: auto; }
    main.single-product-scene .product-info .product-image {
      grid-column: 7 / 13;
      border-radius: 0.5rem;
      overflow: hidden;
      align-self: flex-start; }
      @media screen and (max-width: 600px) {
        main.single-product-scene .product-info .product-image {
          grid-column: 1 / 7;
          grid-row: 1; } }
    main.single-product-scene .product-info .product-quote {
      display: none;
      grid-column: 2 / 18;
      margin-top: 8rem;
      font-family: 'BrightonSH';
      font-size: 6rem; }
      @media screen and (max-width: 600px) {
        main.single-product-scene .product-info .product-quote {
          grid-column: 1 / 5;
          font-size: 2rem;
          margin-top: 3rem; } }
    main.single-product-scene .product-info .company-profile {
      margin-top: 9rem;
      grid-column: 1 / -1; }
      main.single-product-scene .product-info .company-profile .indent {
        font-size: 1.11rem;
        font-weight: 600;
        text-transform: uppercase;
        vertical-align: top;
        margin-top: 1em;
        margin-right: 6rem; }
      main.single-product-scene .product-info .company-profile p {
        display: inline;
        vertical-align: top;
        font-family: 'BrightonSH';
        font-weight: 300;
        font-size: 5.55rem;
        line-height: 0.92em;
        width: 70%; }
  main.single-product-scene .founder-info {
    background: var(--darkgreen);
    color: var(--blue);
    padding: 6rem;
    padding-bottom: 10rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--gutter); }
    @media screen and (max-width: 600px) {
      main.single-product-scene .founder-info {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: var(--gutter);
        padding-top: 4rem;
        padding-left: 4rem;
        padding-right: 4rem; } }
    main.single-product-scene .founder-info .founder-image {
      grid-row: 1;
      grid-column: 1 / span 2;
      border-radius: 0.5rem;
      overflow: hidden;
      margin-bottom: auto; }
      @media screen and (max-width: 600px) {
        main.single-product-scene .founder-info .founder-image {
          grid-column: 1 / 7;
          grid-row: 2;
          margin-top: var(--margin); } }
    main.single-product-scene .founder-info .founder-description {
      grid-column: 7 / span 5;
      font-size: 1.11rem;
      font-weight: 350; }
      main.single-product-scene .founder-info .founder-description h3 {
        margin-bottom: 1rem;
        font-size: 1.11rem;
        font-weight: 600;
        text-transform: uppercase; }
      main.single-product-scene .founder-info .founder-description h1 + h3 {
        margin-top: 3rem; }
      main.single-product-scene .founder-info .founder-description p:first-of-type {
        display: inline; }
      main.single-product-scene .founder-info .founder-description p + p {
        margin-top: 1.5em; }
      main.single-product-scene .founder-info .founder-description p + h3,
      main.single-product-scene .founder-info .founder-description p + h1 {
        margin-top: 4rem; }
        @media screen and (max-width: 600px) {
          main.single-product-scene .founder-info .founder-description p + h3,
          main.single-product-scene .founder-info .founder-description p + h1 {
            margin-top: 2.5rem; } }
      @media screen and (max-width: 600px) {
        main.single-product-scene .founder-info .founder-description {
          grid-column: 1 / 7;
          grid-row: 3;
          font-size: 0.8rem;
          margin-top: 0rem; } }
      main.single-product-scene .founder-info .founder-description .sustainability-icon {
        width: 8rem;
        display: block;
        position: absolute;
        transform: translateX(calc(-100% - 2rem)); }
        @media screen and (max-width: 600px) {
          main.single-product-scene .founder-info .founder-description .sustainability-icon {
            position: relative;
            transform: none;
            width: 6rem;
            margin-bottom: 1rem; } }
  main.single-product-scene .single-product-footer {
    background: var(--darkgreen);
    color: var(--cream);
    padding: var(--margin);
    padding-top: 5rem; }
    main.single-product-scene .single-product-footer .product-nav {
      margin-bottom: 10rem;
      display: flex;
      justify-content: center;
      gap: 1rem; }
      main.single-product-scene .single-product-footer .product-nav a {
        display: block;
        color: var(--orange);
        border: 1px solid var(--orange);
        width: 12rem;
        text-align: center;
        padding: 0.2em 0 0.3em;
        border-radius: 0.5rem; }
        main.single-product-scene .single-product-footer .product-nav a:hover {
          background: var(--orange);
          color: var(--darkgreen); }
  main.single-product-scene .footer-logo {
    width: 40vw; }
    main.single-product-scene .footer-logo svg {
      object-fit: contain;
      height: 100%;
      height: auto;
      width: 100%; }
    main.single-product-scene .footer-logo svg path {
      fill: white; }
