/* Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  font-weight: normal;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes up-and-fade {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Global  */
:root {
  --off-white: #fefefe;
  --cream: #f5f3ed;
  --black: #010101;
  --red-bright: #C60000;
  --red-dark: #440000;
  --red-extra-dark: #270301;
  --red-grad-dark: 81, 0, 0;
  --red-grad-light: 198, 0, 0;

  --font-serif: ivypresto-headline, serif;
  --font-sans: embarcadero-mvb-pro, sans-serif;

  --nav-height: 100px;
}

@view-transition {
  navigation: auto;
}

html {
  font-size: 16px;
  line-height: 1.3em;
  scroll-behavior: smooth;
}
body {
  background: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5em;

  &.nav-open,
  &.lightbox-open {
    overflow: hidden;
  }  
}

hr {
  border: none;
  border-bottom: 1px solid var(--red-bright);

  &.margined {
    display: block;
    margin: 2em 0 1em;
  }
}

h1, h2, h3, h4, h5, h6 {

  &.caps {
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  &.red {
    color: var(--red-bright);
  }
  &.right {
    text-align: right;
  }
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5rem, 6rem);
  line-height: 1em;
  margin-bottom: 0.25em;

  @media (min-width: 1024px) {
    font-size: 7rem;
  }
  @media (min-width: 1300px) {
    font-size: 8rem;
  }

  &.limit {
    max-width: 840px;
  }
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4rem, 5rem);
  font-weight: 300;
  line-height: 1em;
  margin-bottom: 0.25em;

  @media (min-width: 1024px) {
    font-size: 6rem;
  }
  @media (min-width: 1300px) {
    font-size: 7rem;
  }

  .heading-reduced & {
    font-size: clamp(1.5rem, 4vw + 1.25rem, 5rem);
  }
}
h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3rem, 4rem);
  font-weight: 300;
  line-height: 1em;
  margin-bottom: 0.25em;

  @media (min-width: 1024px) {
    font-size: 5rem;
  }
  @media (min-width: 1300px) {
    font-size: 6rem;
  }

  .heading-reduced & {
    font-size: clamp(1.5rem, 4vw + 1rem, 4rem);
  }
}
h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.3em;

  @media (min-width: 1024px) {
    font-size: 1.2rem;
  }
  @media (min-width: 1300px) {
    font-size: 1.4rem;
  }
  .heading-reduced & {
    font-size: clamp(1.1rem, 2vw + 1rem, 2rem);
  }

  &.bump {
    transform: scale(1.2);
  }

  &.caps {
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  p + & {
    margin-top: 1rem;
  }
}
h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  text-transform: uppercase;

  &.caps {
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  @media (min-width: 1024px) {
    font-size: 1.1rem;
  }
}
h6 {
  color: var(--red-bright);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.2em;
  margin: 0 0 0.5em;

  ul + &,
  ol + &,
  p + & {
    margin-top: 1em;
  }
}

.preheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8rem, 3rem);
  font-style: italic;  
  font-weight: 300;
  line-height: 1.1em;
}
p {
  text-wrap: pretty;

  .bump-para-size & {
    font-size: 1.2rem;
    line-height: 1.4em;
  }

  .long-form & {
    text-wrap: inherit;
  }

  p + &,
  h4 + &,
  ol + &,
  ul + & {
    margin-top: 1em;
  }
}
ol {

  .long-form & {
    list-style-type: decimal;
    padding-inline-start: 1em;

    ol {
      list-style-type: upper-alpha;
    }
    p + & {
      margin-top: 1em;
    }
  }
}
li {
  .long-form & {
    li + &,
    p + &,
    ul + & {
      margin-top: 1em;
    }
  }
}
table {
  .long-form & {
    border: 1px solid lightgray;
    border-collapse: collapse;
    margin: 20px 0;
  }
  .textual & {
    border-collapse: collapse;
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
    margin: 20px 0;

    tr:nth-of-type(2n) {
      background: rgba(200, 200, 200, .2);
    }
    td {
      padding: 10px;
    }
  }
  .centered-then-left & {
    margin: 20px auto;
    @media (min-width: 1024px) {
      margin: 20px 0;
    }      
  }
}
th, td {
  .long-form & {
    border-bottom: 1px solid lightgray;
    padding: 1em;    
  }
}

strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
span {

  &.small-height {
    display: block;
    height: 0.5rem;
  }
  &.reduce {
    font-size: 0.85rem;
    line-height: 1em;
  }
  &.caps {
    text-transform: uppercase;
  }
}
a {
  &.abs {
    inset: 0;
    position: absolute;
  }
  &.no-decor {
    color: inherit;
    text-decoration: none;
  }
  &.upcase {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .link-button-yes &,
  &.simple-button {
    background: var(--red-bright);
    border: 2px solid var(--red-bright);
    border-radius: 4px;
    color: white;
    display: inline-block;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease-out;

    &.small {
      font-size: 1em;
      letter-spacing: 0.05em;
      padding: 10px 25px;
    }

    &:hover {
      background: var(--red-dark);
    }

    &.white {
      background: none;
      border: 2px solid white;

      &:hover {
        background: white;
        color: var(--red-dark);
      }
    }
  }
}

img {

  &.fadein {
    animation: fadein .5s ease-out forwards;
  }
}

.global-head {
  background: linear-gradient(to bottom, rgb(0 0 0 / 100%), rgb(0 0 0 / 0%));
  height: var(--nav-height);
  position: relative;
  z-index: 89;

  @media (min-width: 1100px) {
    position: sticky;
    top: 0;
  }
}
.logotype {
  position: absolute;
  left: 40px;
  top: 30px;
  width: 160px;

  @media (min-width: 1100px) {
    width: 180px;
  }

  @media (min-width: 1400px) {
    left: calc(50vw - 700px);
    width: 220px;
  }
}
.nav-trigger {
  cursor: pointer;
  height: 19px;
  position: absolute;
  right: 40px;
  top: 40px;
  transition: all 0.2s ease-out;
  width: 39px;
  z-index: 101;

  @media (min-width: 1100px) {
    display: none;
  }

  &:after,
  &:before {
    border-bottom: 3px solid white;
    content: '';
    display: block;
    inset: 0;
    position: absolute;
    transition: transform 0.2s ease-out;
    transform-origin: bottom;
  }
  &:before {
    border: none;
    border-top: 3px solid white;
    transform-origin: right;
  }

  .nav-open & {
    &:after {
      transform: rotate(45deg);
    }
    &:before {
      transform: rotate(-45deg);
    }
  }
}
.navs {
  background: var(--red-bright);
  background: linear-gradient(-45deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 40%);    
  color: white;
  display: none;
  height: 100dvh;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  padding: 0 0 120px;
  top: 0;
  width: 100vw;
  z-index: 99;

  @media (min-width: 1100px) {
    background: none;
    display: block;
    height: inherit;
    left: inherit;
    overflow: visible;
    position: absolute;
    right: 0px;
    top: 20px;
    width: auto;
  }
  @media (min-width: 1400px) {
    right: calc(50vw - 780px);
    top: 35px;
  }

  .nav-open & {
    display: block;
  }
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  margin: 140px 0 0;
  padding: 0 5vw;

  @media (min-width: 1100px) {
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin: 0;
  }
  @media (min-width: 1300px) { gap: 30px; }
  @media (min-width: 1400px) { gap: 30px; }

  a {
    display: inline-block;
    font-size: 2rem;
    margin-top: 15px;
    padding: 5px 0;
    text-decoration: none;
    text-transform: uppercase;

    @media (min-width: 1100px) { font-size: 0.9rem; }
    @media (min-width: 1200px) { font-size: 1rem; }
    @media (min-width: 1300px) { font-size: 1.1rem; }
    @media (min-width: 1400px) { font-size: 1.2rem; }
  }
}
.menu-item {
  position: relative;

  &.current-menu-parent,
  &.current-menu-item:not(.current-menu-parent) {

    &:after {
      background: var(--red-bright);
      content: '';
      display: block;
      height: 3px;
      left: 0;
      position: absolute;
      top: 0;
      transform: translateY(55px);
      width: 100%;

      @media (min-width: 1100px) {
        height: 2px;
        transform: translateY(50px);
      }
    }
  }
  .menu-item.menu-item-has-children .sub-menu & {
    &:after { display: none }
  }
  &:not(.menu-item-has-children):hover,
  &.menu-item-has-children:hover {
    @media (min-width: 1100px) {
      &:after {
        background: var(--red-dark);
        border-radius: 4px;
        content: '';
        display: block;
        height: 55px;
        left: 0;
        position: absolute;
        top: 0;
        transform: translate(-15px, 5px);
        width: calc(100% + 30px);
        z-index: -1;
      }
    }
  }
  .sub-menu & {
    &:hover {
      @media (min-width: 1100px) {
        color: var(--red-bright);
      }
    }
  }
}

.sub-menu {
  list-style: none;

  @media (min-width: 1100px) {
    display: none;

    .menu-item-has-children:hover & {
      background: var(--red-dark);
      border-radius: 0 4px 4px 4px;
      display: block;
      padding: 0 20px 20px;
      position: absolute;
      transform: translateX(-15px);
      white-space: nowrap;
    }
  }
}

section {
  position: relative;

  &:first-of-type {
    margin-top: calc(var(--nav-height) * -1);
  }

  &.bg-cream {
    background: var(--cream);
  }
  &.bg-red-gradient {
    background: var(--red-bright);
    background: linear-gradient(270deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 50%);    
  }
  &.bg-red-dark-gradient {
    background: var(--red-dark);
    background: linear-gradient(270deg,var(--red-dark) 0%, var(--red-extra-dark) 50%);
  }

  &.topleft-circle-darken {
    &:after,
    &:before {
      aspect-ratio: 1 / 1.25;
      background: left / cover url('img/concentric3-black.png') no-repeat;
      bottom: 0;
      content: '';
      max-width: 300px;
      opacity: 0.1;
      position: absolute;
      right: 0;
      width: 15%;
      z-index: -1;
    }
  }
  &.topleft-circle-darken {
    &:before {
      aspect-ratio: 1 / 1;
      bottom: inherit;
      left: 0;
      right: inherit;
      top: 0;
      width: 30%;
      transform: rotate(180deg);
    }
  }
}
footer {
  background: var(--red-dark);
  background: linear-gradient(90deg,var(--red-extra-dark) 0%, black 50%);
  color: white;
}
.footer-wrap,
.sub-footer-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  padding: 40px 0;
  max-width: 1400px;
  width: 90vw;

  @media (min-width: 1024px) { padding: 80px 0; }
  @media (min-width: 1400px) { padding: 110px 0; }
}
.sub-footer-wrap {
  gap: 20px;
  justify-content: space-between;
}
.footer-preface-images {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.footer-primary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;

  @media (min-width: 1024px) {
    width: 33%;
  }
}
.footer-secondary {
  display: flex;
  gap: 80px;
  margin-top: 80px;
  width: 100%;

  @media (min-width: 1024px) {
    margin: 0;
    width: auto;
  }
}
.footer-logotype {
  width: 200px;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-social {
  display: inline-block;
  height: 30px;
  width: 30px;
}
.footer-disclaimer {
  border-top: 1px solid white;
  padding-top: 20px;
  width: 100%;
}
.footer-menu-block {
  text-transform: uppercase;
}
.footer-menu-title {
  font-weight: 700;
}
.f1-menu-items,
.f2-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;

  a {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 0;
    text-decoration: none;
  }
}














.inline-icon {
  display: block;

  > svg {
    fill: white;

    &:hover {
      fill: var(--red-bright);
    }
  }
}
.textonly {
  visibility: hidden;
}

.full-width {
  display: flex;
  flex-wrap: wrap;

  &.limit-height {
    max-height: 65vh;
  }
  &.pad-vertical {
    padding: 80px 0;
  }
/*  &.push-height {
    @media (min-width: 1400px) {
      min-height: 100vh;
    }
  }
*/
  .pattern-maze + & {
    position: relative;
  }
}
.half-inside-width {
  width: 100%;

  @media (min-width: 1024px) {
    width: calc((100% - 40px) / 2);
  }

  &.extend-left,
  &.extend-right {
    @media (min-width: 1400px) {
      margin: 30px 0;
      transform: translate(calc((50vw - 700px) * -1), 0) scale(1.1);
      transform-origin: left;
    }
    @media (min-width: 1540px) {
      margin: 40px 0;
      transform: translate(calc((50vw - 700px) * -1), 0) scale(1.2);
    }
  }
  &.extend-right {
    @media (min-width: 1400px) {
      margin: 30px 0;
      transform: translate(calc((50vw - 700px)), 0) scale(1.1);
      transform-origin: right;
    }
    @media (min-width: 1540px) {
      margin: 40px 0;
      transform: translate(calc((50vw - 700px)), 0) scale(1.2);
    }
  }
}

.half-width {
  /* Allow layers to stack */
  & > * {
    grid-row: 1;
  }

  display: grid;
  grid-template-columns: auto minmax(320px, 512px) auto;
  overflow: hidden;
  width: 100%;

  @media (min-width: 1024px) {
    grid-template-columns: auto minmax(512px, 720px);
    width: 50%;

    &:nth-of-type(2n) {
      grid-template-columns: minmax(512px, 720px) auto;
    }
  }
}

.middle-width {
  & > * {
    grid-row: 1;
  }

  background: red;
  display: grid;
  grid-template-columns: auto minmax(320px, 1400px) auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Shared  */
.primary-pattern,
.image-wrap,
.text-wrap {
  grid-column: 2 / 3;

  @media (min-width: 1024px) {
    .half-width:nth-of-type(2n) & {
      grid-column: 1 / 2;
    }
  }
}
.primary-bg {
  grid-column: 1 / 4;

  &.cream {
    background: var(--cream);
  }
  &.black {
    background: var(--black);
  }
  &.red-gradient {
    background: var(--red-bright);
    background: linear-gradient(270deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 50%);    
  }
  &.red {
    background: var(--red-bright);
  }  

  @media (min-width: 1024px) {
    grid-column: 2 / 3;
    .half-width:nth-of-type(2n) & {
      grid-column: 1 / 2;
    }
  }
}

.margin-bg {
  grid-column: 1 / 4;

  @media (min-width: 1024px) {
    grid-column: 1 / 2;
    .half-width:nth-of-type(2n) & {
      grid-column: 2 / 3;
    }

    &.cream {
      background: var(--cream);
    }
    &.black {
      background: var(--black);
    }
    &.red-gradient {
      background: var(--red-bright);
      background: linear-gradient(270deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 50%);    
    }
    &.red-dark {
      background: rgba(var(--red-grad-dark), 1);
    }
    &.red-light {
      background: rgba(var(--red-grad-light), 1);
    }
  }
}
.full-bg {
  grid-column: 1 / -1;
  &.black {
    background: var(--black);
  }
  &.red-gradient {
    background: var(--red-bright);
    background: linear-gradient(270deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 50%);    
  }
  &.red-dark {
    background: rgba(var(--red-grad-dark), 1);
  }
  &.red-light {
    background: rgba(var(--red-grad-light), 1);
  }
}

.primary-pattern {

  &.transparent {
    fill: white;
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
    opacity: 0.2;
  }
  &.transparent2 {
    fill: white;
    mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
    opacity: 0.4;
  }
  &.shift-left {
    @media (min-width: 720px) {
      transform: translateX(-15%);
    }
  }
}
.pattern-maze {
  inset: 0;
  position: absolute;

  &.transparent {
    fill: white;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.25));
    opacity: 0.2;
  }
  img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}
.corner-pattern {
  display: none;
}
.scale-up {
  transform: scale(2);
}
.text-wrap {
  display: grid;
  padding: 40px;
  place-content: center;
  z-index: 2;

  &.extra-vertical {
    @media (min-width: 720px) {
      padding: 80px 40px;
    }
    @media (min-width: 1024px) {
      padding: 120px 40px;
    }
  }
  section:first-of-type &.within-maze {
    padding: 100px 0 50px;
  }
}

.full-text-wrap {
  padding: min(5rem, 8vw);
  width: 100%;

  &.medium {
    margin: auto;
    max-width: 1024px;
  }
  &.narrow {
    margin: auto;
    max-width: 700px;
  }
}

.textual {
  &.centered {
    text-align: center;
  }
  &.centered-then-left {
    padding: 0 5%;
    text-align: center;
    @media (min-width: 1024px) {
      text-align: left;
    }
  }
  &.right {
    text-align: right;
  }
  &.pad {
    padding: 0 5%;
  }

  &.single {
    flex-grow: 1;
  }
  &.balance {
    margin: auto;
    max-width: 800px;
    text-wrap: pretty;
  }

  &.white {
    color: white;
  }
}
.imaged {

  &.rounded {
    border-radius: 8px;
    overflow: hidden;
  }

  img {
    height: 100%;
    object-fit: cover;
  }
}

.image-wrap {
  @media (min-width: 1024px) {
    height: 100%;
  }
}
.imaging {

  &.cover {
    aspect-ratio: 1 / 1;
    height: 100%;

    img {
      height: 100%;
      object-fit: cover;
    }
  }
}

.full-bg-image {
  aspect-ratio: 1.778 / 1;
  width: 100%;

  @media (min-width: 1400px) {
    max-height: 80vh;
  }

  img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
  }
}
.full-bg-video {
  aspect-ratio: 1.77 / 1;
  width: 100%;

  video {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}


.inside-width {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: 60px auto;
  max-width: 1400px;
  width: 100%;

  @media (min-width: 1024px) {
    margin: 100px auto;
  }

  &.vertical-align {
    align-items: center;
  }
}

.gallery-explain-wrap,
.gallery-tease-wrap {
  margin: auto;
  width: 90%;

  @media (min-width: 1024px) {
    max-width: 700px;
    width: calc(45% - 30px);
  }
}
.gallery-tease-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;

  .swap-right & {
    order: 2;
  }
}
.gallery-tease-item {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;

  &:not(:first-of-type) {
    width: calc(50% - 10px);
  }
}

.details-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto min(80px, 8vw);
  max-width: 1400px;
  width: 90%;
}
.details-card {
  border-radius: 6px;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;

  @media (min-width: 800px) {
    width: calc((100% - 40px)/  2);
  }
}
.card-image {
  img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  &.aspect-square {
    @media (min-width: 800px) {
      aspect-ratio: 1 / 1;
    }
  }
  &.aspect-wide {
    aspect-ratio: 1.6 / 1;
  }
  &.aspect-extra-wide {
    @media (min-width: 800px) {
      aspect-ratio: 1.75 / 1;
    }
  }
}
.card-text {
  background: white;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: min(30px, 3vw);
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;

  .centered &,
  .centered-then-left & {
    justify-content: center;
  }
  .centered-then-left & {
    @media (min-width: 1024px) {
      justify-content: flex-start;
    }
  }
}

.title-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto min(80px, 8vw);
  max-width: 1400px;
  width: 90%;
}
.title-card {
  border-radius: 6px;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100%;

  @media (min-width: 800px) {
    &.triplet { width: calc((100% - 80px)/  3);}
    &.twin { width: calc((100% - 40px)/  2);}
  }
}
a.card-title {
  background: var(--red-bright);
  color: white;
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-out;

  &:hover {
    background: var(--red-dark);
  }
}

.inside-image {

  &.round-corner-regular {
    @media (min-width: 1024px) {
      border-radius: 12px;
      overflow: hidden;
    }
  }

  .extend-right &.round-corner-regular {
    @media (min-width: 1024px) {
      border-radius: 12px 0 0 12px;
      overflow: hidden;
    }
  }
  .extend-left &.round-corner-regular {
    @media (min-width: 1024px) {
      border-radius: 0 12px 12px 0;
      overflow: hidden;
    }
  }
}
.teaser-trios {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-around;
  margin-top: 60px;
  width: 100%;
}
.teaser-trio {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: min(420px, 100%);
}
.teaser-amount {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1em;
  margin-top: auto;

  &.large {
    font-size: clamp(1.5rem, 4vw + 1.25rem, 5rem);
  }
  &.right {
    text-align: right;
  }
}

.icon-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 0 auto 80px;
  max-width: 1400px;
  width: 90vw;
}
.icon-card {
  align-items: center;
  background: var(--red-dark);
  background: linear-gradient(270deg,var(--red-dark) 0%, var(--red-extra-dark) 50%);
  border-radius: 12px;
  color: white;
  display: flex;
  flex-direction: column;
  max-width: 390px;
  padding: 40px 30px;
  width: 100%;
}
.icon-card-icon {
  margin: 0 0 40px;
  width: 170px;
}
.icon-card-title {
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
  text-transform: uppercase;
  width: 100%;
}
.icon-card-summary {
  margin-bottom: 40px;
  text-wrap: pretty;
  width: 100%;
}
.icon-card-action {
  display: block;
  margin-top: auto;
  text-transform: uppercase;
  width: 100%;

  a {
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 40px;
    text-decoration: none;

    &:hover {
      background: white;
      color: var(--red-dark);
    }
  }
}
.wait-times-wrap {
  margin: 0 auto 80px;
  max-width: 1200px;
  width: 90vw;
}

iframe.wait-times-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5 / 1;
  border: 0;  
}

label {
  display: block;
  margin-bottom: 1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  border: 1px solid lightgray;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1.2em;
  padding: 15px 30px;
  width: 100%;
  -webkit-appearance: none;

  &:focus {
    outline: none;
    border: 1px solid lightblue;
  }
  &[type=submit]{
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: white;
    padding: 10px 40px;
    width: auto;

    &:hover {
      background: var(--red-bright);
      cursor: pointer;
    }

    &.narrow {
      max-width: 200px;
    }
  }
}


.bricks {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1400px;
  justify-content: center;
  width: 100%;

  @media (min-width: 1024px) { margin: 60px auto; }
  @media (min-width: 1200px) { margin: 80px auto; }

  &.valign-middle {
    align-items: center;
  }
  &.valign-bottom {
    align-items: flex-end;
  }
  &.seamless-follow {
    margin-top: 0;
  }
}
.brick {
  width: 100%;

  &.threequarter {
    @media (min-width: 800px) {
      width: 75%;
    }
  }

  &.twothird {
    @media (min-width: 800px) {
      width: 66%;
    }
  }
  &.half,
  .col-count-two & {
    @media (min-width: 800px) {
      width: 50%;
    }
  }
  &.third,
  .col-count-three & {
    @media (min-width: 800px) {
      width: 33%;
    }
  }
  &.quarter,
  .col-count-four & {
    @media (min-width: 800px) {
      width: 25%;
    }
  }

}
.brick-content {
  &.pad {
    padding: 40px;
  }
}

.fixed-bricks {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, 300px);
  place-content: center;
  width: 100%;

  @media (min-width: 1024px) {
    gap: 40px;
  }

  &.medium {
    grid-template-columns: repeat(auto-fit, 440px);
  }
  &.large {
    grid-template-columns: repeat(auto-fit, 550px);
  }

  &.limit {
    margin: auto;
    max-width: 1400px;
  }
}
.fixed-brick {
  width: 300px;

  .medium & {
    width: 440px;
  }
  .large & {
    width: 550px;
  }
}



.gform_wrapper {
  margin: 80px 0;
}

.gfield--type-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.gfield {
  margin-bottom: 40px;
}

h2.gform_submission_error,
.gform_confirmation_message {
  color: var(--red-bright);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.2em;
  margin-bottom: 20px;
  padding: 20px 0;
}
.gform_confirmation_message {
  color: var(--black);
}
.gfield_validation_message {
  color: var(--red-bright);
  font-style: italic;
  padding: 10px;
}
.gfield_required {
  margin-left: 0.5em;
  text-transform: none;
}


.detail-table {
  margin-bottom: 80px;
}
.table-title {
  color: var(--red-bright);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.2em;
  margin-bottom: 1em;
  /*text-transform: uppercase;*/
}
.table-head,
.table-body {
  border-bottom: 1px solid lightgray;
  display: flex;

  &:nth-of-type(2n) {
    background: rgba(200, 200, 200, .1);
  }
}
.table-head-col {
  color: var(--red-dark);
  font-weight: 700;
  text-transform: uppercase;
}
.table-head-col,
.table-body-col {
  padding: 5px 10px;
  width: 240px;

  &.centered {
    text-align: center;
  }
}
.table-body {

}
.table-body-col {

}
.table-footnote {
  margin: 20px;
  padding: 20xp;
}

.logo-wrap {
  margin: auto;
  max-width: 240px;
  padding: 20px;
  width: 100%;
}
.logo-title {
  font-size: 0.85rem;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.stacked-gallery-images {
  margin: 40px auto;
  max-width: 1400px;
  width: 90vw;

  @media (min-width: 1024px){ margin: 60px auto; }
}
.stacked-gallery-primary {
  aspect-ratio: 1.778 / 1;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;

  img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}
.stacked-gallery-thumbs {
  display: flex;
  gap: 10px;
}
.stacked-gallery-thumb {
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}

.scroller-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}
.scroller-items {
  align-items: center;
  animation: scroll-left 30s linear infinite;
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  justify-content: space-around;
  padding-right: 5px;
  width: 200%;

  @media (min-width: 800px) {
    gap: 15px;
    padding-right: 15px;
  }
  @media (min-width: 1500px) {
    gap: 20px;
    padding-right: 20px;
    width: 180%;
  }

  .scroller-wrap:hover & {
    animation-play-state: paused;
  }
}
.scroller-item {
  border-radius: 6px;
  max-height: 520px;
  overflow: hidden;
  position: relative;

  &:before {
    background: rgba(181, 11, 11, .8);
    content: '';
    inset: 0;
    position: absolute;
  }

  &:nth-of-type(2n) {
    &:before {
      background: rgba(140, 109, 17, .8);
    }
  }
}
.scroller-item-title {
  color: white;
  font-size: .8rem;
  left: 50%;
  line-height: 1.3em;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  text-wrap: pretty;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 90%;
  z-index: 5;

  /* Update syntax: (width => 700px) */
  @media (min-width: 700px) {
    font-size: 1rem;
    line-height: 1.3em;
    width: 85%;
  } 
  @media (min-width: 1024px) {
    font-size: 1.2rem;
    line-height: 1.3em;
  } 
  @media (min-width: 1200px) {
    font-size: 1.6rem;
    line-height: 1.3em;
  } 
}

.in-view-motion {
  opacity: 0;
  transform: translateY(10%);

  &.in-view {
    animation: up-and-fade 0.5s ease-out forwards;
  }
  &:nth-of-type(2) { animation-delay: .1s }
  &:nth-of-type(3) { animation-delay: .2s }
  &:nth-of-type(4) { animation-delay: .3s }
  &:nth-of-type(5) { animation-delay: .4s }
  &:nth-of-type(6) { animation-delay: .5s }
}

.topic-groups {
  padding: 60px 0;
}
.topic-group {
  color: white;
  margin: auto;
  max-width: 1400px;
  text-align: center;
  text-wrap: pretty;
  width: 100%;

  .topic-group + & {
    margin-top: 80px;
  }
}
.topic-header {
  background: var(--red-bright);
  background: linear-gradient(270deg,rgba(var(--red-grad-light), 1) 0%, rgba(var(--red-grad-dark), 1) 50%);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4rem, 5rem);
  line-height: 1.2em;
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 5;

  @media (min-width: 1024px) {
    background: none;
    position: relative;
    top: inherit;
  }
}
.topic-description {
  margin: auto;
  max-width: 800px;
}

.video-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;

  @media (min-width: 1024px) {
    margin: 80px 0;
  }
}
.video-item {
  background: var(--red-dark);
  background: linear-gradient(270deg,var(--red-dark) 0%, var(--red-extra-dark) 50%);
  border-radius: 12px;
  cursor: pointer;
  max-width: 600px;
  padding: 20px 30px 30px;
  width: 90%;

  @media (min-width: 1024px) {
    width: calc(50% - 40px);
  }
}
.video-item-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6rem, 2rem);
  line-height: 1.2em;
  margin-bottom: 30px;
}
.video-item-prompt {
  border: 2px solid var(--red-extra-dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;

  img {
    height: 100%;
    object-fit: cover;
  }
}
.video-item-play {
  font-size: 2rem;
  inset: 0;
  position: absolute;
  transition: all 0.2s ease-out;
  z-index: 2;

  &:before,
  &:after {
    content: '▶';
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  &:after {
    border: 2px solid white;
    border-radius: 40px;
    content: '';
    padding: 30px;
    transform: translate(calc(-50% - 3px), -50%);
  }

  .video-item:hover & {
    font-size: 1.6rem;
    transform: translateY(-65px) scale(0.6);
  }
}
.video-item-desc {
  inset: 0;
  opacity: 0;
  padding: 10px;
  place-content: end;
  position: absolute;
  transition: all 0.2s ease-out;
  transform: translate(0,10px);
  z-index: 1;

  .video-item:hover & {
    opacity: 1;
    transform: translate(0,0);
  }

  &:after {
    background: rgba(0, 0, 0, 0.7);
    content: '';
    display: block;
    height: 120%;
    left: 0;
    position: absolute;
    top: -20%;
    width: 100%;
    z-index: -1;
  }
}

.global-lightbox,
.video-lightbox,
.preview-lightbox {
  display: grid;
  inset: 0;
  padding-top: 110px;
  place-content: start center;
  position: fixed;
  transform: translateX(-100%);
  z-index: 99;

  @media (min-width: 768px) {
    padding: 0;
    place-content: center;
  }

  &.active {
    backdrop-filter: blur(5px);
    transform: translateX(0%);
  }
}
.global-lightbox-shade-one,
.global-lightbox-shade-two,
.video-lightbox-shade-one,
.video-lightbox-shade-two,
.preview-lightbox-shade-one,
.preview-lightbox-shade-two {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
  transform: translateY(100%);
  transition: all 0.3s ease-out 0.2s;

  .global-lightbox.active &,
  .video-lightbox.active &,
  .preview-lightbox.active & {
    transform: translateY(0);
  }
}
.global-lightbox-shade-two,
.video-lightbox-shade-two,
.preview-lightbox-shade-two {
  transform: translateY(-100%);
}
.global-lightbox-content,
.video-lightbox-content,
.preview-lightbox-content {
  position: relative;
}
.global-lightbox-close,
.video-lightbox-close,
.preview-lightbox-close {
  height: 40px;
  position: absolute;
  right: 40px;
  top: 60px;
  width: 40px;

  &:before {
    color: white;
    content: '+';
    cursor: pointer;
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 100;
    transform: rotate(45deg) scale(2);
  }
}
.video-lightbox-play  {
  aspect-ratio: 1.77 / 1;
  width: 90vw;

  iframe {
    border: none;
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
}

.small-card {
  background: var(--red-dark);
  background: linear-gradient(270deg,var(--red-dark) 0%, var(--red-extra-dark) 50%);
  border-radius: 8px;
  padding: 20px;

  &.limit-vert {
    mask-image: linear-gradient(to bottom, red 60%, transparent 100%);
    max-height: 25rem;
    overflow: hidden;
  }
}

.preview-button {
  display: inline-block;
}
.global-button-prompt,
.preview-button-prompt {
  background: none;
  border: 2px solid white;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  padding: 15px 40px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-out;

  &:not(:last-of-type) {
    margin-right: 1em;
  }

  &.red {
    background: var(--red-bright);
    border: 2px solid var(--red-bright);
  }


  &.small {
    font-size: 1em;
    letter-spacing: 0.05em;
    padding: 10px 25px;
  }

  &:hover {
    background: white;
    color: var(--red-dark);
  }
}
.global-button-content,
.preview-button-content {
  display: none;
}
.preview-card {
  background: var(--red-dark);
  background: linear-gradient(270deg,var(--red-dark) 0%, var(--red-extra-dark) 50%);
  border-radius: 8px;
  color: white;
  overflow-y: scroll;
  padding: 30px;
  max-height: 80vh;
  max-width: 800px;
  width: 90%;
}
.global-lightbox-inside {
  background: white;
  border-radius: 8px;
  text-align: center;
  max-width: 960px;
  padding: max(40px, 1vw);
  width: 90vw;
}
.detail-items-group {
  border-top: 1px solid darkgray;
  margin: 30px auto 20px;
  padding-top: 20px;
}
.detail-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.detail-item {
  padding: 5px;
  width: 300px;
}

.site-banner-one {
  background: black;
  border-bottom: 1px solid var(--red-dark);
}
.site-banner-content {
  color: var(--red-bright);
  display: flex;
  justify-content: flex-end;
  margin: auto;
  max-width: 1400px;
  padding: 10px 0;
  width: 90vw;
}