@import url("variables.css");
.relative {
  position: relative;
}
.absolute {
  
}
.vv-italic {
  font-family: var(--red-font-hero-italic);
}
.top-left {
  
}
.text-cream {
  color: var(--red-color-cream-main) !important;
}
.text-red {
  color: var(--red-color-red-main) !important;
}
.text-darkred {
  color: var(--red-color-red-dark) !important;
}
.z-1 {
  z-index: 1;
  position: relative;
}
.flex-row {
  display: flex;
}
.flex-row li {
  flex-basis: 25%;
}
.panel-default-padding {
  padding: 18rem 0;
}
.panel-container {
  display: grid;
  place-content: center;
  grid-template-columns: 1fr;
}
.panel-typing p {

}
.typing-container .reveal-type {
  font-size: 5rem;
}
.bg-red-main {
  background-color: var(--red-color-red-main);
}
.bg-red-dark {
  background-color: var(--red-color-red-dark);
}
.bg-red-cream, .bg-cream {
  background-color: var(--red-color-cream-main);
}
.panel-hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel-whatido {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  padding: clamp(10rem, 16vw, 18rem) 0;
  padding-top: 0;
}
.title--whatido {
  margin-left: 8.33333333%;
}
.whatido-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 254, 239, 0.12);
}
.whatido-item {
  border-bottom: 1px solid rgba(255, 254, 239, 0.32);
  padding: clamp(1.0rem, 1vw, 3rem) 0;
  padding-left: 8.33333333%;
}
.whatido-text {
  display: block;
  font-family: 'halyard-display';
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  font-size: clamp(3.4rem, 7vw, 11.6rem);
  line-height: 0.94;
  position: relative;
}
.whatido-marquee {
  position: relative;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 0px solid rgba(255, 254, 239, 0.12);
  border-bottom: 0px solid rgba(255, 254, 239, 0.12);
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  padding: clamp(1.4rem, 1vw, 3rem) 0;
  margin-top: 0;
}
.whatido-marquee__track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: whatido-marquee 18s linear infinite;
  will-change: transform;
}
.whatido-marquee__text {
  font-family: 'halyard-display';
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  font-size: clamp(3.4rem, 6vw, 11.6rem);
  white-space: nowrap;
  padding: 0 clamp(3rem, 4vw, 8rem);
  line-height: 0.94;
}
@keyframes whatido-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatido-marquee__track {
    animation: none;
  }
}
.panel-anim-headline {
  background: var(--red-color-cream-main);
  color: var(--red-color-red-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.anim-headline {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.anim-headline__stack {
  position: absolute;
  inset: 0;
}
.anim-headline__word,
.anim-headline__word--base {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--red-font-hero-italic);
  font-size: clamp(8rem, 16vw, 20rem);
  letter-spacing: -0.06em;
  line-height: 0.7;
  padding-bottom: 20px;
  padding-right: .15em;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--red-color-red-main);
  background: var(--red-color-cream-main);
}
.anim-headline__word {
  --raise-start: -50%;
  --raise-base: -80%;
  --raise-step: -30%;
  opacity: 0;
  animation: headlineRise 4s cubic-bezier(.46,.03,.23,1) infinite alternate;
  /* animation-delay: calc(var(--layer) * 0.42s); */
  z-index: var(--layer-z);
}
.anim-headline__word.downfall {
  --raise-start: -50%;
  --raise-base: -20%;
  --raise-step: 30%;
  opacity: 1;
  animation: headlineSunset 4s cubic-bezier(.46,.03,.23,1) infinite alternate;
  /* animation-delay: calc(var(--layer) * 0.42s); */
  z-index: var(--layer-z);
}
.anim-headline__word--base {
  position: absolute;
  background: var(--red-color-cream-main);
  z-index: 100;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.anim-headline__callout {
  position: relative;
  z-index: 2;
  font-family: var(--red-font-sans-regular);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
}
@keyframes headlineRise {
  0% {
    transform: translate(-50%, var(--raise-start));
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, calc(var(--raise-base) + (var(--layer) * var(--raise-step))));
    opacity: 1;
  }
}
@keyframes headlineSunset {
  0% {
    transform: translate(-50%, var(--raise-start));
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, calc(var(--raise-base) + (var(--layer) * var(--raise-step))));
    opacity: 1;
  }
}
.floating-line {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  font-size: var(--red-font-hero);
  font-family: var(--red-font-hero-regular);
  color: var(--red-color-cream-main);
  line-height: normal;
  overflow: hidden;
  z-index: 1;
}
.floating-line > div {
  position: relative;
  top: 100%;
  margin: 0 10px;
}
.floating-line .text-slots {
  /* animation: textslide 6s linear 0ms infinite normal none; */
  height: 1.2em;
  
}
.floating-line.active > div:nth-child(1) {
  animation: textslide 6s linear 0ms infinite normal none;
}
.floating-line.active > div:nth-child(2) {
  animation: textslide 6s linear 300ms infinite normal none;
}
.floating-line.active > div:nth-child(3) {
  animation: textslide 6s linear 600ms infinite normal none;
}
.floating-line.active > div:nth-child(4) {
  animation: textslide 6s linear 900ms infinite normal none;
}
/* .floating-line.active .text-slots {
  animation: textslide 5s linear 1s infinite normal none, textopener 1s linear 0s 1 normal forwards;
} */
.floating-line .text-slots > div {
  height: 2.4em;
}
.floating-line .text-hero-design {
  /* font-size: 5rem; */
}
.mobile-hero-line {
  display: none;
}
.mobile-hero-line__word {
  height: 1.1em;
  overflow: hidden;
}
.mobile-hero-line__slot {
  display: flex;
  flex-direction: column;
  animation: mobileHeroWordSlide 5s cubic-bezier(.46,.03,.23,1) infinite;
  animation-delay: var(--mobile-hero-delay, 0ms);
  will-change: transform;
  row-gap: .2em;
}
.mobile-hero-line__word:nth-child(2) {
  --mobile-hero-delay: 120ms;
}
.mobile-hero-line__word:nth-child(3) {
  --mobile-hero-delay: 240ms;
}
.mobile-hero-line__word:nth-child(4) {
  --mobile-hero-delay: 360ms;
}
.mobile-hero-line__slot span {
  display: block;
  height: 1em;
  line-height: 1;
}
.slide-up-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  justify-content: center;
}
.slide-up {
  position: relative;
  top: 100%;
}
.slide-up.active:nth-child(1) {

}
.slide-up.active {
  animation: textopener 300ms linear calc(var(--red-card-delay) * 2) 1 normal forwards;
}
.slide-type {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-size: var(--red-font-hero);
}
.slide-type .char {
  /* position: relative;
  top: 100%; */
}
.slide-type .word {
  position: relative;
  top: 100%;
  margin: 0 .1em;
}
@keyframes textopener {
  0% {
    top: 100%
  }
  100% {
    top: 0;
  }
}
@keyframes textslide {
  0% {
    transform: translateY(calc(0% + 0px));
  }
  40% {
    transform: translateY(calc(0% + 0px));
  }
  50% {
    transform: translateY(calc(-200% + 0px));
  }
  90% {
    transform: translateY(calc(-200% + 0px));
  }
  100% {
    transform: translateY(calc(-400% + 0px));
  }

}
@keyframes mobileHeroWordSlide {
  0%, 38% {
    transform: translateY(0);
  }
  50%, 88% {
    transform: translateY(-1.2em);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  #floating-line-hero {
    display: none;
  }
  .mobile-hero-line {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    color: var(--red-color-cream-main);
    font-family: var(--red-font-hero-regular);
    font-size: clamp(4.2rem, 20vw, 7rem);
    line-height: 0.9;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-hero-line__slot {
    animation: none;
    transform: translateY(-0.9em);
  }
}

.simple-masking {
  position: relative;
  overflow: hidden;
}
.simple-masking_el {
  position: relative;
  display: inline-block;
}
.simple-masking_el .whatido-text {
  margin: 0;
}
.simple-masking_el .is-deep {
  color: rgba(255, 254, 239, 0.18);
}
.simple-masking_el .is-masking {
  --mask-size: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-clip-path: inset(0 var(--mask-size) 0 0);
  clip-path: inset(0 var(--mask-size) 0 0);
}
.simple-masking_el .is-masking,
.simple-masking_el .is-deep {
  will-change: clip-path;
}

.panel-aboutCards {
  background-color: var(--red-color-cream-main);
  color: var(--red-color-red-main);
  display: grid;
  grid-template-columns: 100%;
  place-content: center;
  padding: 18rem 0;
  overflow-x: hidden;
}
.cards-carousel {
  position: relative;
  overflow: hidden;
}
.cards-container {
  display: flex;
  width: 100%;
  gap: 24px;
  
}
.cards-carousel.swiper {
  margin-bottom: 20px;
  padding-bottom: 28px !important;
  overflow: visible;
}

.cards-container.swiper {
  
}
.cards-container.is-scroll-cue {
  animation: cards-scroll-cue 650ms ease-in-out;
}
.cards-container > .card {
  position: relative;
  font-family: var(--red-font-sans-regular);
  padding: var(--red-card-padding);
  border: 1px solid var(--red-color-red-main);
  border-radius: 20px;
  flex: 0 0 auto;
  min-width: 220px;
  width: clamp(220px, 24vw, 240px);
  box-shadow: 0px 7px 0 var(--red-color-red-main);
  /* transform: translateY(calc(100% + 10px)); */
  transition: transform var(--red-card-duration) 150ms ease-in-out;
}
.cards-scrollbar {
  margin-top: 12px;
  height: 4px;
}

.cards-scrollbar.swiper-scrollbar-horizontal {
  position: static;
}

.cards-scrollbar .swiper-scrollbar-drag {
  background-color: var(--red-color-red-main);
  border-radius: 999px;
}
@keyframes cards-scroll-cue {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-16px);
  }
  100% {
    transform: translateX(0);
  }
}
.cards-container .card:nth-child(1) {
  /* animation-delay: calc(var(--red-card-delay) * 1);
  transition-delay:calc(var(--red-card-delay) * 1); */
  transition: transform var(--red-card-duration) calc(var(--red-card-delay) * 1) ease-in-out, background 300ms ease, color 300ms ease;
}
.cards-container .card:nth-child(2) {
  /* animation-delay: calc(var(--red-card-delay) * 2);
  transition-delay:calc(var(--red-card-delay) * 2); */
  transition: transform var(--red-card-duration) calc(var(--red-card-delay) * 2) ease-in-out, background 300ms ease, color 300ms ease;
}

/* -------------------------------------------------------------------------- */
/* New interior pages                                                          */
/* -------------------------------------------------------------------------- */

.interior-page .panel-module {
  position: relative;
}

.interior-page .panel-module .panel-container {
  gap: 2.4rem;
  text-align: left;
}

.interior-page .panel-module .panel-title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.1;
}

.interior-page .panel-module p {
  font-family: var(--red-font-sans-regular);
  /* font-size: clamp(1.4rem, 2vw, 1.8rem); */
  line-height: 1.6;
}

.about-hero-media {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-video-mobile {
  display: none;
}

.about-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 0, 0, 0.0) 0%, rgba(74, 0, 0, 0.25) 55%, rgba(20, 0, 0, 0.25) 100%);
  z-index: 1;
}

.about-hero-media .container-fluid,
.about-hero-scroll {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  width: min(92vw, 1400px);
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 16rem) 0;
  text-align: center;
}

.about-hero-name {
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    font-family: var(--red-font-hero-italic);
    font-size: clamp(8rem, 16vw, 20rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.7;
    padding-bottom: 20px;
    padding-right: .15em;
    text-transform: capitalize;
    white-space: nowrap;
    color: var(--red-color-red-main);
}

.about-hero-tagline {
  font-family: var(--font-sans-serif);
  /* font-size: clamp(1.4rem, 2vw, 1.8rem); */
  text-align: center;
  letter-spacing: normal;
  line-height: normal;
  margin-bottom: 0;
  font-size: clamp(1.4rem, 1vw, 1.7rem);
  font-weight: 400;
}

.about-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(2rem, 4vw, 4rem);
  transform: translateX(-50%);
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(0.9rem, 1.2vw, 1.0rem);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: aboutScrollFloat 3s ease-in-out infinite;
}

@media (max-width: 767.98px) {
  .about-hero-video-desktop {
    display: none;
  }

  .about-hero-video-mobile {
    display: block;
  }
}

.about-hero-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: aboutArrowPulse 3.2s ease-in-out infinite;
}

@keyframes aboutScrollFloat {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@keyframes aboutArrowPulse {
  0% {
    opacity: 0;
    transform: translateY(-6px) rotate(45deg);
  }
  40% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }
  80% {
    opacity: 0;
    transform: translateY(10px) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-scroll,
  .about-hero-arrow {
    animation: none;
  }
}

.about-blurb {
  --aboutblurb-fill: 0%;
  position: relative;
  background-color: var(--about-transition-bg, var(--red-color-red-main));
  color: var(--about-transition-color, var(--red-color-cream-main));
  /* min-height: 100vh; */
  padding: clamp(10rem, 16vw, 18rem) 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-blurb-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}
.about-blurb-inner--mobile {
  display: none;
}

@media (max-width: 768px) {
  .about-blurb-inner--desktop {
    display: none;
  }

  .about-blurb-inner--mobile {
    display: grid;
  }
}

.about-blurb-text {
  font-family: var(--red-font-sans-regular);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 7.4rem);
  line-height: 0.98;
  line-height: 1.00;
  letter-spacing: -0.04em;
}

.about-blurb-text--base {
  color: var(--about-transition-color, var(--red-color-cream-main));
  opacity: 0.26;
}

.about-blurb-text--fill {
  position: absolute;
  inset: 0;
  color: var(--about-transition-color, var(--red-color-cream-main));
  clip-path: inset(0 0 calc(100% - var(--aboutblurb-fill)) 0);
  will-change: clip-path;
  pointer-events: none;
}

.about-blurb-line {
  display: block;
}

@media (max-width: 768px) {
  .about-blurb {
    min-height: 100vh;
    padding: clamp(5rem, 16vw, 12rem) .5rem;
  }
  .about-blurb-text {
    font-size: clamp(3.6rem, 6.4vw, 7.4rem);
    text-align: left;
  }
}

.about-marquee {
  background: var(--about-transition-bg, var(--red-color-cream-main));
  padding: clamp(2.8rem, 7vw, 7rem) 0;
  padding-bottom: clamp(2.8rem, 12vw, 13rem);
  display: grid;
  gap: clamp(0.4rem, 1.2vw, 1rem);
  overflow: hidden;
}

.about-marquee-row {
  width: 100%;
  overflow: hidden;
}
.about-marquee-row.about-marquee-row--rtl {
  text-align: right;
}
.about-marquee-row.about-marquee-row--ltr {
  text-align: left;
}
.about-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: max-content;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(5rem, 22vw, 22rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--about-transition-color, var(--red-color-red-main));
  animation: aboutMarqueeLeft 12s linear infinite;
}

.about-marquee-row--ltr .about-marquee-track {
  animation: aboutMarqueeRight 12s linear infinite;
}

.about-marquee-track span {
  display: inline-flex;
  align-items: center;
  padding-right: 0;
  line-height: 0.5;
}

.about-image-strip {
  background: var(--about-transition-bg, var(--red-color-cream-main));
  padding: 0;
  overflow: hidden;
}

.about-image-strip__viewport {
  width: 100%;
  overflow: hidden;
}

.about-image-strip__track {
  display: flex;
  align-items: stretch;
  gap: clamp(0.8rem, 1vw, 1.4rem);
  width: max-content;
  padding: clamp(0.8rem, 1vw, 1.4rem) 0;
  will-change: transform;
}

.about-image-strip__item {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 420px);
  height: clamp(180px, 22vh, 300px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.about-image-strip__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}



@keyframes aboutMarqueeLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-120%);
  }
}

@keyframes aboutMarqueeRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee-track {
    animation: none;
  }
}

.about-blurb-words {
  background: var(--about-transition-bg, var(--red-color-cream-main));
  color: var(--red-color-red-main);
  padding: clamp(9rem, 10vw, 16rem) 0;
  padding-bottom: 0;
  margin-bottom: -10vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-blurb-words-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-blurb-words-text {
  font-family: var(--red-font-sans-regular);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 7.4rem);
  line-height: 0.98;
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.about-blurb-words-text--base {
  color: rgba(242, 14, 14, 0.22);
}

.about-blurb-words-text--fill {
  position: absolute;
  inset: 0;
  color: var(--red-color-red-main);
  pointer-events: none;
}

.about-blurb-paragraph {
  margin: 0;
}

.about-blurb-word {
  display: inline-block;
}

.about-blurb-words-text--fill .about-blurb-word {
  --word-fill: 0%;
  clip-path: inset(-0.2em calc(100% - var(--word-fill)) -0.2em 0);
  will-change: clip-path;
}

.about-immersive-image {
  --about-immersive-inset: 18%;
  --about-immersive-radius: 24px;
  /* background: var(--about-transition-bg, var(--red-color-cream-main)); */
  background: none;
  min-height: 260vh;
  position: relative;
  overflow: clip;
}

.pin-spacer {
  padding: 0;
}

.about-immersive-image__pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-immersive-image__frame {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  /* background: #120000; */
}

.about-immersive-image__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-clip-path: inset(var(--about-immersive-inset) var(--about-immersive-inset) var(--about-immersive-inset) var(--about-immersive-inset) round var(--about-immersive-radius));
  clip-path: inset(var(--about-immersive-inset) var(--about-immersive-inset) var(--about-immersive-inset) var(--about-immersive-inset) round var(--about-immersive-radius));
  will-change: clip-path;
}

@media (prefers-reduced-motion: reduce) {
  .about-immersive-image {
    min-height: 100vh;
  }

  .about-immersive-image__pin {
    position: relative;
  }
}

.about-break {
  position: relative;
  min-height: clamp(50vh, 70vw, 75vh);
  overflow: hidden;
}

.about-break-image {
  position: absolute;
  inset: 0;
  background: url("../images/wallpaper_studio_br_portrait_redcircle_desktop.jpg") center/cover no-repeat;
  transform: scale(1.00);
  will-change: transform;
}

.about-break::after {
  /* content: ""; */
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
}

@media (max-width: 768px) {
  .about-image-strip__track {
    gap: clamp(0.6rem, 2vw, 1rem);
    padding: clamp(0.6rem, 2vw, 1rem) 0;
  }

  .about-image-strip__item {
    width: clamp(180px, 56vw, 260px);
  height: clamp(150px, 22vh, 200px);
  }

  .about-blurb-words {
    padding: clamp(7rem, 14vw, 12rem) .5rem;
  }
  .about-blurb-words-text {
    text-align: left;
    font-size: clamp(3.6rem, 6.4vw, 7.4rem);
  }
  .about-immersive-image {
    --about-immersive-inset: 24%;
    --about-immersive-radius: 20px;
    min-height: 220vh;
  }
  .about-immersive-image__frame {
    height: 100svh;
  }
}

.about-hero-subtitle,
.work-hero-subtitle,
.contact-hero-subtitle {
  max-width: 720px;
}

.about-story-intro,
.about-skills-intro,
.work-plp-intro,
.work-instagram-intro {
  max-width: 860px;
}

.about-full-skills-tree-content.panel-default-padding {
  padding: 10rem 0;
}

.about-full-skills-tree {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
}

.about-contact-block {
  position: relative;
  min-height: 100vh;
  color: var(--red-color-cream-main);
  overflow: hidden;
  background: var(--red-color-red-main);
}

.about-contact-block__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 14, 14, 0.18) 0%, rgba(242, 14, 14, 0.08) 100%),
    url("../images/wallpaper_studio_br_portrait_jacket_pattern_desktop.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  will-change: transform;
}

.about-contact-block__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 0;
  padding: 0 clamp(1.6rem, 5vw, 4rem);
}

.about-contact-block__headline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-top: clamp(1rem, 5vw, 5rem);;
}

.about-contact-block__headline {
  margin: 0;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(4.2rem, 12vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 600;
  text-align: center;
  color: var(--red-color-cream-main);
  white-space: nowrap;
}

.about-contact-block__headline::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
  animation: aboutContactCaret 0.85s steps(1) infinite;
}

.about-contact-block__headline.is-complete::after {
  opacity: 0;
}

.about-contact-block__links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(2.4rem, 8vw, 8rem);
  padding-bottom: clamp(1rem, 5vw, 5rem);
  flex-wrap: wrap;
}

.about-contact-card {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 0.4rem;
  min-width: min(100%, 24rem);
}

.about-contact-card__label {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.about-contact-card__value {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
  padding-bottom: 0.25rem;
}

.about-contact-card__value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}

.about-contact-card.is-revealed .about-contact-card__value::after {
  animation: aboutContactUnderline 0.85s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes aboutContactUnderline {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes aboutContactCaret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.about-full-skills-tree-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2rem;
  margin-top: 0rem;
}

.about-full-skills-group h3 {
  font-family: var(--red-font-sans-regular);
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 1.6rem;
}

.about-full-skills-group ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-full-skills-group li {
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: normal;
}

.timeline-list {
  display: grid;
  gap: 2.4rem;
  margin-top: 3rem;
}

.panel-container.panel-default-padding.about-story-content {
  padding: 10rem 0;
  gap: 0;
}
.about-story .about-story-content h2.panel-title, .about-full-skills-tree .about-full-skills-tree-content h2.panel-title {
  font-family: var(--font-serif-italic);
  font-size: clamp(2.8rem, 2vw, 4.8rem);
}
.about-story-content h2.panel-title, .about-full-skills-tree h2.panel-title {
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.0;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.4rem, 6vw, 7rem);
  align-items: start;
  margin-top: 4rem;
}

.about-story-media-rail {
  position: sticky;
  /* top: clamp(1.5rem, 4vw, 3rem); */
  top: clamp(1.5rem, 15vw, 15rem);
  align-self: start;
}

.about-story-media-frame {
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 254, 239, 0.12);
}

.about-story-media-item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.about-story-media-item.is-active {
  opacity: 1;
  visibility: visible;
}

.about-story-media-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-story-chapters {
  display: grid;
  gap: clamp(5rem, 10vh, 9rem);
}

.about-story-chapter {
  display: grid;
  align-content: start;
  min-height: clamp(320px, 48vh, 540px);
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-story-chapter.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-story-media-item,
  .about-story-chapter {
    transition: none;
  }

  .about-contact-block__headline::after,
  .about-contact-card.is-revealed .about-contact-card__value::after {
    animation: none;
  }

  .about-contact-card__value::after {
    transform: scaleX(1);
  }
}

.about-story-panel__copy {
  align-content: start;
  display: grid;
  gap: 1.6rem;
}

.about-story-panel__copy h3 {
  color: var(--red-color-cream-main);
  font-family: var(--red-font-sans-regular);
  font-size: clamp(2.8rem, 4vw, 5.8rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -.04em;
  font-weight: 400;
}

.about-story-panel__copy p {
  margin: 0;
  max-width: 58ch;
}

.timeline-entry h3 {
  font-family: var(--red-font-sans-regular);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.timeline-entry p {
  margin: 0;
}

.skills-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.skills-card {
  border: 2px solid var(--red-color-cream-main);
  border-radius: 18px;
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.skills-card h3 {
  font-family: var(--red-font-sans-regular);
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.skills-card ul {
  display: grid;
  gap: 0.6rem;
  font-size: 1.5rem;
}

.philosophy-grid,
.testimonial-list,
.case-study-grid,
.plp-grid,
.insta-grid,
.contact-grid,
.faq-list {
  display: grid;
  gap: 2.4rem;
}

.philosophy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.philosophy-grid article h3,
.contact-grid h2,
.case-study-card h3,
.plp-card h3,
.faq-list h3 {
  font-family: var(--red-font-sans-regular);
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.testimonial-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-list blockquote {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--red-color-cream-main);
  padding: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.testimonial-list cite {
  display: block;
  margin-top: 1.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resume-cta {
  margin-top: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  font-family: var(--red-font-sans-regular);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red-color-cream-main);
  color: var(--red-color-red-main);
  border: 2px solid var(--red-color-red-main);
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn:focus {
  outline: 3px solid var(--red-color-cream-main);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.case-study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-study-card {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--red-color-red-main);
  border-radius: 24px;
  padding: 2.8rem;
  display: grid;
  gap: 1.6rem;
}

.case-study-card ul {
  display: grid;
  gap: 0.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.work-plp .panel-container {
  align-items: stretch;
}

.plp-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plp-card {
  border: 4px solid var(--red-color-red-dark);
  padding: 2.4rem;
  border-radius: 28px;
  display: grid;
  gap: 1.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plp-image {
  border: 2px solid var(--red-color-cream-main);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.plp-card p {
  text-transform: none;
  letter-spacing: normal;
}

.plp-cta {
  font-size: 1.2rem;
  font-family: var(--red-font-sans-regular);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-color-cream-main);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.4rem;
  width: fit-content;
}

.plp-cta:hover {
  color: var(--red-color-cream-main);
  opacity: 0.8;
}

.insta-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.insta-card {
  background: #fff;
  border: 2px solid var(--red-color-red-main);
  border-radius: 20px;
  padding: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

.insta-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--red-color-red-main);
}

.insta-card figcaption {
  font-size: 1.3rem;
  line-height: 1.4;
}

.work-cta-content {
  align-items: center;
  text-align: center;
}

.work-cta-content p {
  max-width: 640px;
  margin: 0 auto;
}

.work-selected-hero {
  --work-hero-progress: 0;
  background: rgb(var(--work-shift-bg-r, 242), var(--work-shift-bg-g, 14), var(--work-shift-bg-b, 14));
  min-height: 150vh;
  position: relative;
}

.work-selected-hero__sticky {
  position: sticky;
  top: 0;
  /* min-height: 100vh; */
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(8rem, 9vw, 12rem) 0 clamp(2rem, 4vw, 4rem);
}

.work-selected-hero__supertitle {
  width: min(94vw, 1360px);
  transform-origin: top center;
  transform: translateY(calc(var(--work-hero-progress) * 80vh)) scale(calc(1 - (var(--work-hero-progress) * 0.42)));
  will-change: transform;
  display: flex;
  justify-content: center;
}
.work-selected-hero__content {
  width: min(94vw, 1360px);
  transform-origin: top center;
  transform: translateY(calc(var(--work-hero-progress) * -8vh)) scale(calc(1 - (var(--work-hero-progress) * 0.22)));
  will-change: transform;
}

.work-selected-hero__title {
  margin: 0;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(5.6rem, 11.8vw, 21rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: #0d0d0d;
}

.work-selected-hero__image-frame {
  margin: clamp(1.4rem, 2.2vw, 2.8rem) 0 0;
  width: 100%;
  aspect-ratio: 9.8 / 16;
  border-radius: clamp(14px, 1.3vw, 20px);
  overflow: hidden;
}

.work-selected-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-selected-caption {
  background: rgb(var(--work-shift-bg-r, 242), var(--work-shift-bg-g, 14), var(--work-shift-bg-b, 14));
  padding: clamp(3rem, 7vw, 8rem) 0 clamp(3rem, 9vw, 10rem);
  position: relative;
  z-index: 1;
}

.work-selected-caption__inner p {
  margin: 0;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(2rem, 2.8vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-align: center;
  color: var(--red-color-cream-main);
}
.work-selected-item {
  font-size: 100px;
  text-align: center;
  font-family: var(--red-font-sans-regular);
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin-top: -65vh;
}
.work-selected-item .work-selected-item--title {
  font-size: 163px;
    /* text-transform: uppercase; */
    font-family: var(--red-font-hero-italic);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1;
}
.work-selected-item .work-selected-item--role {
  font-size: 62px;
    font-weight: 300;
    /* display: none; */
    line-height: 1;
}
.work-selected-item .work-selected-item--date {
  font-size: 47px;
    font-weight: 300;
}

.work-selected-intro {
  background: #e5e5e5;
}

.work-selected-intro__content {
  align-items: flex-start;
  text-align: left;
  padding-top: clamp(4rem, 8vw, 8rem);
}

.work-selected-intro__content p {
  margin: 0;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(3rem, 5vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #0d0d0d;
}

.true-services {
  --ts-bg-r: var(--work-shift-bg-r, 242);
  --ts-bg-g: var(--work-shift-bg-g, 14);
  --ts-bg-b: var(--work-shift-bg-b, 14);
  --ts-fg-r: var(--work-shift-fg-r, 24);
  --ts-fg-g: var(--work-shift-fg-g, 9);
  --ts-fg-b: var(--work-shift-fg-b, 9);
  --ts-line-r: var(--work-shift-fg-r, 24);
  --ts-line-g: var(--work-shift-fg-g, 9);
  --ts-line-b: var(--work-shift-fg-b, 9);
  --ts-accent-r: var(--work-shift-accent-r, 24);
  --ts-accent-g: var(--work-shift-accent-g, 9);
  --ts-accent-b: var(--work-shift-accent-b, 9);
  background: rgb(var(--ts-bg-r), var(--ts-bg-g), var(--ts-bg-b));
  color: rgb(var(--ts-fg-r), var(--ts-fg-g), var(--ts-fg-b));
  padding: clamp(8rem, 12vw, 14rem) 0;
}

.true-services__inner {
  display: grid;
  gap: clamp(3.2rem, 5vw, 6rem);
}

.true-services__headline {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 1.6vw, 2rem);
  flex-wrap: wrap;
}

.true-services__headline-solid {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(5.2rem, 11vw, 16rem);
  font-weight: 700;
}

.true-services__headline-stroke {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(5.2rem, 11vw, 16rem);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--ts-fg-r), var(--ts-fg-g), var(--ts-fg-b), 0.92);
  text-stroke: 1.5px rgba(var(--ts-fg-r), var(--ts-fg-g), var(--ts-fg-b), 0.92);
}

.true-services__intro {
  margin: 0;
  max-width: 840px;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(2rem, 2.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.true-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 2.6vw, 3.2rem);
}

.true-services__card {
  border-top: 1px solid rgba(var(--ts-line-r), var(--ts-line-g), var(--ts-line-b), 0.3);
  padding-top: clamp(1.6rem, 2vw, 2.4rem);
}

.true-services__card-title {
  margin: 0 0 1.6rem;
  font-family: var(--red-font-sans-regular);
  font-size: clamp(2.6rem, 2.4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.96;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.true-services__card-title span {
  color: rgb(var(--ts-accent-r), var(--ts-accent-g), var(--ts-accent-b));
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.true-services__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.2rem;
}

.true-services__list li {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(1.8rem, 0.8vw, 2.4rem);
  line-height: 1.2;
}

.true-beyond-title {
  background: rgb(var(--work-shift-bg-r, 7), var(--work-shift-bg-g, 7), var(--work-shift-bg-b, 7));
  padding: clamp(3rem, 7vw, 8rem) 0 clamp(5rem, 9vw, 10rem);
}

.true-beyond-title__text {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.86;
  white-space: nowrap;
}

.true-beyond-title__solid,
.true-beyond-title__stroke {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(6rem, 16vw, 30rem);
  font-weight: 700;
}

.true-beyond-title__solid {
  color: rgb(var(--work-shift-accent-r, 242), var(--work-shift-accent-g, 14), var(--work-shift-accent-b, 14));
}

.true-beyond-title__stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--work-shift-fg-r, 245), var(--work-shift-fg-g, 245), var(--work-shift-fg-b, 245), 0.95);
  text-stroke: 1.5px rgba(var(--work-shift-fg-r, 245), var(--work-shift-fg-g, 245), var(--work-shift-fg-b, 245), 0.95);
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  font-size: 1.5rem;
}

.contact-list span {
  font-family: var(--red-font-sans-regular);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.8rem;
}

.contact-list a {
  color: inherit;
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.8rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--red-color-red-main);
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  font-family: var(--red-font-sans-regular);
  color: var(--red-color-red-main);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  appearance: none;
}

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list article {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.faq-list p {
  font-size: 1.5rem;
}

/* -------------------------------------------------------------------------- */
/* Responsive adjustments                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .true-services__grid {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .work-selected-hero {
    min-height: 165vh;
  }

  .work-selected-hero__sticky {
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(1.6rem, 4vw, 3rem);
  }

  .work-selected-hero__title {
    font-size: clamp(2.8rem, 10.8vw, 6.8rem);
    line-height: 0.9;
  }

  .work-selected-hero__image-frame {
    aspect-ratio: 4 / 5;
  }

  .work-selected-caption__inner p {
    font-size: clamp(1.9rem, 6.2vw, 3rem);
  }

  .work-selected-intro__content p {
    font-size: clamp(2.3rem, 7.2vw, 3.8rem);
    line-height: 1;
  }

  .true-services__headline {
    line-height: 0.92;
  }

  .true-services__card-title {
    font-size: clamp(2.3rem, 8vw, 3rem);
  }

  .true-services__list li {
    font-size: clamp(1.8rem, 5.6vw, 2.3rem);
  }

  .true-beyond-title__text {
    white-space: normal;
    text-align: center;
    line-height: 0.9;
  }

  .true-beyond-title__solid,
  .true-beyond-title__stroke {
    font-size: clamp(5rem, 18vw, 10rem);
  }

  .panel-default-padding {
    padding: 8rem 1.5rem;
  }

  .about-full-skills-tree-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .about-contact-block__headline {
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
    font-size: clamp(8.0rem, 35vw, 10rem);
  }

  .about-full-skills-group h3 {
    /* font-size: clamp(1.9rem, 5.2vw, 2.8rem); */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .about-full-skills-group li {
    /* font-size: clamp(1.2rem, 3.3vw, 1.4rem); */
    font-size: 14px;
  }

  .skills-grid,
  .philosophy-grid,
  .testimonial-list,
  .case-study-grid,
  .plp-grid,
  .contact-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .interior-page .panel-module .panel-container {
    /* padding: 0 2rem; */
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .btn {
    width: 100%;
  }

  .about-story-panel__copy p {
    max-width: none;
  }

  .about-contact-block {
    min-height: 88vh;
  }

  .about-contact-block__inner {
    grid-template-rows: 1fr auto;
  }

  .about-contact-block__links {
    justify-content: flex-start;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .about-contact-block__headline-wrap {
    padding-top: 11rem;
  }

  .about-contact-card {
    min-width: 0;
    width: 100%;
  }

  .about-contact-card__value {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-top: 3rem;
  }

  .about-story-media-rail {
    top: 1rem;
    z-index: 1;
  }

  .about-story-media-frame {
    min-height: clamp(240px, 52vw, 360px);
  }

  .about-story-chapters {
    gap: 3.6rem;
  }

  .about-story-chapter {
    min-height: clamp(220px, 36vh, 340px);
  }
}

@media (max-width: 520px) {
  .interior-page .panel-module .panel-title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .interior-page .panel-module p {
    /* font-size: 1.4rem; */
  }
}
.cards-container .card:nth-child(3) {
  /* animation-delay: calc(var(--red-card-delay) * 3);
  transition-delay:calc(var(--red-card-delay) * 3); */
  transition: transform var(--red-card-duration) calc(var(--red-card-delay) * 3) ease-in-out, background 300ms ease, color 300ms ease;
}
.cards-container .card:nth-child(4) {
  /* animation-delay: calc(var(--red-card-delay) * 4);
  transition-delay:calc(var(--red-card-delay) * 4); */
  transition: transform var(--red-card-duration) calc(var(--red-card-delay) * 4) ease-in-out, background 300ms ease, color 300ms ease;
}
.cards-container .card:nth-child(5) {
  /* animation-delay: calc(var(--red-card-delay) * 5);
  transition-delay:calc(var(--red-card-delay) * 5); */
  transition: transform var(--red-card-duration) calc(var(--red-card-delay) * 5) ease-in-out, background 300ms ease, color 300ms ease;
}
.cards-container.active > .card {
  transform: translateY(0%);
}
.cards-container .card:hover {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
}

.card h3 {
  height: 140px;
  padding-top: var(--red-card-padding);
  font-weight: 400;
}
.card ul {
  padding-bottom: var(--red-card-padding);
  font-weight: 300;
}
.card ul li {
  border-bottom: 1px solid var(--red-color-red-main);
  line-height: 2em;
}
.card ul li:last-child {
  border-bottom: 0;
}
.cards-container .card:hover ul li {
  border-bottom: 1px solid var(--red-color-cream-main);
}
.cards-container .card:hover ul li:last-child {
  border-bottom: 0;
}

@media (max-width: 767.98px) {
  .cards-carousel {
    overflow: visible;
  }

  .cards-container {
    overflow-x: auto;
    gap: 16px;
    padding: 0 6px 16px;
    margin: 0 -6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cards-container > .card {
    scroll-snap-align: start;
  }

  .cards-scrollbar {
    display: none;
  }
}
.plus {
  position: absolute;
}
.plus::after {
  content: '+';
}
.plus.top-left {
  top: 0;
  left: 0;
  padding: var(--red-card-padding);
}
.plus.top-right {
  top: 0;
  right: 0;
  padding: var(--red-card-padding);
}
.plus.bottom-left {
  bottom: 0;
  left: 0;
  padding: var(--red-card-padding);
}
.plus.bottom-right {
  bottom: 0;
  right: 0;
  padding: var(--red-card-padding);
}

.card-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  clip-path: inset(100% 0 0% 0);
  pointer-events: none;
  transition: clip-path 600ms cubic-bezier(.12,.64,.44,1),-webkit-clip-path 600ms cubic-bezier(.12,.64,.44,1);
}
.card:hover .card-mask{
  clip-path: inset(0);
}
.card-mask > .card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  padding: var(--red-card-padding);
  box-sizing: border-box;
  border: 1px solid var(--red-color-red-main);
  border-radius: 20px;
  flex: 1 1 0;
  box-shadow: 0px 7px 0 var(--red-color-red-main);
  transition: transform var(--red-card-duration) 150ms ease-in-out;
}
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header-logo {
  position: fixed;
  height: auto;
  width: 200px;
  top: var(--red-header-top);
  left: var(--red-header-x);
  fill: var(--red-color-cream-main);
}
.header-menu {
  position: fixed;
  top: var(--red-header-top);
  right: var(--red-header-x);
  text-align: right;
  /* text-transform: uppercase; */
  color: var(--red-color-cream-main);
  font-family: var(--red-font-sans-regular);
  font-family: halyard-display, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.header-menu li {
  margin-bottom: 8px;
}
.header-menu li a {
  padding: 4px 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.header-nav.red .header-menu {
  color: var(--red-color-red-main);
}
.header-nav.red .header-logo {
  fill: var(--red-color-red-main);
}
.footer-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.footer-social {
  position: fixed;
  bottom: var(--red-header-top);
  left: var(--red-header-x);
  fill: var(--red-color-cream-main);
}
.footer-social li {
  height: 20px;
  width: 20px;
  margin-top: 36px;
}
.footer-social .social a {
  fill: var(--red-color-cream-main);
}
.footer-nav.red .footer-social .social a {
  fill: var(--red-color-red-main);
}
.panel-mask-rows {
  margin-top: -80px;
}
.panel-mask-rows ul li {
  width: 100%;
  padding: 20px 0;
  /* display: flex;
  flex: 1 1 0; 
  align-items: center; */
  text-align: left;
  
}
.panel-mask-rows .mask-rows .row {
  color: var(--red-color-cream-main);
  border-bottom: 1px solid var(--red-color-cream-main);
  padding: 24px 0;
  align-items: stretch;
}
.panel-mask-rows .mask-rows .row-mask {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(50% 0 50% 0);
  pointer-events: none;
  transition: clip-path 600ms cubic-bezier(.12,.64,.44,1),-webkit-clip-path 600ms cubic-bezier(.12,.64,.44,1);
  background: var(--red-color-cream-main);
  color: var(--red-color-red-main);
  overflow: hidden;
}
.panel-mask-rows .mask-rows .row:hover .row-mask {
  clip-path: inset(0);
}
.panel-mask-rows .mask-rows .row {
  
}
.panel-mask-rows .mask-rows .row .col-lg-2.offset-lg-1 {
  display: flex;
  align-items: center;
}

.history-year {
  width: 400px;
  font-family: var(--red-font-sans-regular);
  font-size: var(--red-history-fontsize);
  font-weight: 400;
  letter-spacing: -.04em;
  /* color: var(--red-color-cream-main); */
}
.position-title {
  font-family: var(--red-font-sans-regular);
  /* font-size: var(--red-history-fontsize); */
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  font-size: clamp(3.4rem, 6vw, 11.6rem);
  line-height: 0.94;
  /* color: var(--red-color-cream-main); */
}
.position-company, .history-length {
  font-family: var(--red-font-sans-regular);
  font-weight: 300;
  /* font-size: 14px; */
  /* color: var(--red-color-cream-main); */
}
.work-container {

}
.work-item {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.work-pic, .work-title {
  grid-area: 1/-1;
}
.work-pic {
  overflow: hidden;
  clip-path: inset(0% 0%);
  transition: all ease 500ms;
  position: relative;
}
.work-pic img {
  width: 100%;
  transition: transform 300ms ease;
}
.work-pic:hover {
  clip-path: inset(3% 3%);
}
.work-pic:hover img {
  transform: scale(1.05);
}
.work-title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
}
.panel-title {
  font-family: var(--red-font-sans-regular);
  font-weight: 300;
  color: var(--red-color-cream-main);
  font-size: 20px;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
}
.panel-title-fancy {
  font-family: var(--red-font-hero-regular);
  font-weight: 400;
  color: var(--red-color-cream-main);
  font-size: 36px;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  text-align: center;
}
.motto-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .14em;
  line-height: normal;
  margin-bottom: 0;
}
.name-title {
  margin-top: 25px;
  text-align: center;
  /* text-transform: uppercase; */
  font-weight: 400;
  font-size: 16px;
}
.footer-quote {
  position: relative;
  min-height: 100vh;
  background: url("/assets/images/wallpaper_studio_br_jp_heavyj_desktop.jpg");
  background-size: cover;
  background-position: center center;
}
.footer-quote .motto-title {
  margin-bottom: clamp(2.2rem, 4vw, 4.4rem);
}
.footer-quote__lines {
  --quote-duration: 6.6s;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 9rem;
  overflow: hidden;
  padding: 0 1.6rem;
}
.footer-quote__line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.2em;
  white-space: nowrap;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-family: var(--red-font-hero-regular);
  color: var(--red-color-cream-main);
  line-height: normal;
}
.footer-quote__word {
  display: inline-block;
  white-space: nowrap;
  transform: translateY(1.25em);
}
.footer-quote__line--a .footer-quote__word {
  animation: footerQuoteWordsA var(--quote-duration) cubic-bezier(.46,.03,.23,1) infinite both;
  animation-delay: calc(var(--word-index) * 85ms);
}
.footer-quote__line--b .footer-quote__word {
  animation: footerQuoteWordsB var(--quote-duration) cubic-bezier(.46,.03,.23,1) infinite both;
  animation-delay: calc(140ms + (var(--word-index) * 85ms));
}
.footer-quote__cta-wrap {
  position: absolute;
  left: 50%;
  bottom: clamp(4.4rem, 10vw, 10.6rem);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 3;
}
.footer-quote__cta {
  white-space: nowrap;
}
.about-next-scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--red-color-cream-main);
  background: var(--red-color-red-main);
}
.about-next-scene__media,
.about-next-scene__overlay {
  position: absolute;
  inset: 0;
}
.about-next-scene__media {
  z-index: 0;
  transform: scale(1.12);
  will-change: transform;
}
.about-next-scene__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-next-scene__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 8, 8, 0.42) 0%, rgba(18, 8, 8, 0.2) 48%, rgba(18, 8, 8, 0.5) 100%),
    rgba(242, 14, 14, 0.16);
}
.about-next-scene__content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(5rem, 7vw, 7rem) 0;
}
.about-next-scene .panel-title.motto-title {
  align-self: end;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--red-font-sans-regular);
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  letter-spacing: .14em;
  white-space: nowrap;
  color: var(--red-color-cream-main);
  margin-bottom: clamp(2.2rem, 4vw, 4.4rem);
}
.about-next-scene__title {
  margin: 0;
  padding: 0 1.6rem;
  text-align: center;
  font-family: var(--red-font-hero-italic);
  font-size: clamp(4.8rem, 12vw, 11rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--red-color-cream-main);
}
.about-next-scene__title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.about-next-scene__title-link:focus-visible {
  outline: 2px solid var(--red-color-cream-main);
  outline-offset: 0.14em;
}
.about-next-scene__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(1rem, 4vw, 3.6rem);
}
.about-next-scene__cta {
  white-space: nowrap;
}
.about-next-scene .about-next-scene__cta:hover,
.about-next-scene .about-next-scene__cta:focus-visible,
.about-next-scene:has(.about-next-scene__title-link:hover) .about-next-scene__cta,
.about-next-scene:has(.about-next-scene__title-link:focus-visible) .about-next-scene__cta {
  transform: translateY(-3px);
  background: var(--red-color-cream-main);
  color: var(--red-color-red-main);
}
@keyframes footerQuoteWordsA {
  0% {
    transform: translateY(1.25em);
  }
  34% {
   transform: translateY(0);
  }
  50% {
    transform: translateY(-1.25em);
  }
  100% {
    transform: translateY(-1.25em);
  }
}
@keyframes footerQuoteWordsB {
  0%, 34% {
    transform: translateY(1.25em);
  }
  48%, 78% {
    transform: translateY(0);
  }
  92%, 100% {
    transform: translateY(-1.25em);
  }
}
@media (max-width: 991.98px) {
  .footer-quote {
    min-height: auto;
    padding: 8rem 0;
  }
  .footer-quote__lines {
    min-height: 2.6em;
  }
  /* .footer-quote__line {
    flex-wrap: wrap;
    row-gap: 0.1em;
    white-space: normal;
  } */
  .footer-quote__cta-wrap {
    position: static;
    transform: none;
    margin-top: clamp(2.6rem, 8vw, 4rem);
  }
  .about-next-scene {
    min-height: auto;
  }
  .about-next-scene__content {
    min-height: 74vh;
    padding: 8rem 0;
  }
  .about-next-scene__title {
    font-size: clamp(4.2rem, 18vw, 7rem);
  }
  .about-next-scene__cta-wrap {
    margin-top: clamp(2.6rem, 8vw, 4rem);
    padding-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-quote__word {
    animation: none;
    transform: none;
  }
  .footer-quote__line--b {
    display: none;
  }
}
.typing-container {
  z-index: 1;
  position: relative;
}
.typing-container .reveal-type {
  font-family: var(--red-font-hero-regular);
  /* font-family: var(--red-font-sans-regular); */
  font-weight: 100;
  color: var(--red-color-cream-main);
}
.marquee-special-padding {
  padding: 5rem 0 10rem;
  margin-top: -18rem;
}
.module-marquee {
  width: 100%;
  overflow: hidden;
  font-family: var(--red-font-sans-regular);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: normal;
  line-height: 1.5em;
  text-align: center;
}
.module-marquee .marquee {
  padding-bottom: 0px;
}
.marquee .bar {
  display: flex;
  /*border-bottom: 1px solid #b5b5b5;*/
  /* background: #e0dee1; */
  /* color: #fd1122; */
  width: 200%;
  overflow: hidden;
  float: none;
  white-space: nowrap;
}
.marquee .bar span {
  display: inline-flex;
  align-items: center;
  float: none;
  animation: marquee 25s linear infinite;
}
.marquee .bar span.reverse {
  animation: marquee-reverse 25s linear infinite;
}
.marquee .bar span img {
  height: 11px;
  margin: 0 16px;
}
.bg-br-red-01 {
  background: url('/assets/images/wallpaper-bg-red-br-01.jpg') no-repeat center top;
  background-size: cover;
}
@-webkit-keyframes webkit-marquee {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
  }
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
@keyframes marquee-reverse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}
.panel-tmpl h1 {
  font-family: var(--red-font-hero-regular);
  font-size: 120px;
}
.panel-tmpl h4 {
  font-family: var(--red-font-hero-italic);
  font-size: 50px;
  letter-spacing: normal;
  margin: 20px 0;
}
.panel-tmpl p {
  font-family: var(--red-font-sans-regular);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: normal;
  margin: 20px 0;
}
.module-caption {
  font-family: var(--red-font-sans-regular);
  margin: 10px 0;
}
.module-caption .text-caption {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .30em;
  opacity: .8;
}
.module-caption .text-caption.text-small {
  text-transform: capitalize;
  letter-spacing: normal;
  font-size: 13px;
  font-weight: 400;
  margin: 4px 0;
}
.module-caption .line {
  width: 120px;
  height: 1px;
  background: #ffffff;
}

.panel-shop {
  background: var(--red-color-cream-main);
  color: var(--red-color-red-main);
  padding: 10rem 0;
}
.panel-shop .panel-title {
  color: var(--red-color-red-main);
  margin-bottom: 0;
  border-bottom: 0;
  /* letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 18px; */
}
.panel-shop .shop-header {
  width: min(1020px, 100%);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .panel-shop .shop-header {
    box-sizing: border-box;
  }
  .shop-window {

  }
}
.shop-headline {
  font-family: var(--red-font-hero-regular);
  font-size: clamp(8rem, 6vw, 20rem);
  letter-spacing: -0.02em;
  line-height: 0.7;
  padding-bottom: 20px;
  font-weight: 400;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--red-color-red-main);
  margin: 0;
}
.shop-subtitle {
  font-family: var(--red-font-sans-regular);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin: 0.6rem 0 0;
  font-weight: 300;
  font-size: 20px;
}
.shop-window {
  width: min(1100px, 100%);
  margin: 0 auto;
  border: 2px solid var(--red-color-red-main);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 24px 40px rgba(33, 0, 0, 0.14);
  overflow: hidden;
}
.shop-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fffeef;
  border-bottom: 0px solid var(--red-color-red-main);
}
.shop-window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-window-address {
  display: none;
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 4px 18px;
  border-radius: 999px;
  border: 1px solid rgba(33, 0, 0, 0.18);
  background: #fffefd;
  color: rgba(33, 0, 0, 0.65);
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
  
}
.shop-window-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(33, 0, 0, 0.25);
}
.shop-window-dot.is-red {
  background: #ff5f56;
}
.shop-window-dot.is-yellow {
  background: #ffbd2e;
}
.shop-window-dot.is-green {
  background: #27c93f;
}
.shop-window-body {
  background: #fffdf7;
}
.panel-shop .panel-title .shop-item {
  padding: 12px 12px;
  background: var(--red-color-cream-main);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--red-color-red-main);
  border-top: 1px solid var(--red-color-red-main);
  border-bottom: 0px solid var(--red-color-red-main);
}
.shop-item {
  border-right: 0px solid rgba(33, 0, 0, .14);
  border-bottom: 0px solid rgba(33, 0, 0, .14);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fffdf7;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(33, 0, 0, 0.08);
  z-index: 1;
}
.shop-grid.shop-grid--titlebar {
  gap: 0;
}
.shop-grid.shop-grid--titlebar .shop-item {
  border: 0;
  justify-content: center;
}
.shop-grid.shop-grid--titlebar .shop-item:hover {
  transform: translateY(0px);
  box-shadow: none;
  z-index: 1;
}
.shop-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0px solid rgba(33, 0, 0, .1);
  padding: 0px;
  overflow: hidden;
  aspect-ratio: 3/3.2;
}
.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-meta {
  position: absolute;
  top: 0px;
  left: 0px;
  display: grid;
  gap: 4px;
  padding: 12px 16px;
}
.shop-name {
  font-family: var(--red-font-sans-regular);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: capitalize;
  font-weight: 300;
  color: var(--red-color-red-main);
}
.shop-price {
  font-family: var(--red-font-sans-regular);
  font-size: 14px;
  color: var(--red-color-red-main);
}
.shop-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  background: rgba(255, 254, 239, 0.96);
  border-top: 1px solid rgba(33, 0, 0, .1);
  padding: 10px 12px;
}
.shop-item:hover .shop-actions {
  opacity: 1;
  transform: translateY(0);
}
.shop-sizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  gap: 8px;
  width: 100%;
}
.shop-size {
  border: 1px solid var(--red-color-red-main);
  background: transparent;
  color: var(--red-color-red-main);
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 4px;
  border-radius: 999px;
  min-height: 30px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.shop-size:hover {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  transform: translateY(-1px);
}
.shop-size:focus-visible {
  outline: 2px solid var(--red-color-red-main);
  outline-offset: 2px;
}
.shop-select {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-right: 1px solid rgba(33, 0, 0, .12);
}
.shop-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  width: 100%;
  font: inherit;
  color: var(--red-color-red-main);
  padding: 12px 14px;
  padding-right: 42px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--red-color-red-main) 50%),
    linear-gradient(135deg, var(--red-color-red-main) 50%, transparent 50%),
    linear-gradient(to right, rgba(33, 0, 0, .16), rgba(33, 0, 0, .16));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    calc(100% - 34px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 70%;
  background-repeat: no-repeat;
}
.shop-add {
  border: none;
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.shop-add:hover {
  background: var(--red-color-red-dark);
}
.shop-add:disabled {
  cursor: wait;
  opacity: 0.85;
}
.shop-add.is-adding {
  background: var(--red-color-red-dark);
  letter-spacing: .12em;
}
.shop-bag-indicator {
  margin-left: auto;
  margin-right: 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0px solid var(--red-color-red-main);
  background: transparent;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.shop-bag-indicator:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(33, 0, 0, 0.15);
}
.shop-bag-indicator.is-pulse {
  animation: shopBagPulse 420ms ease;
}
.shop-bag-icon {
  position: relative;
  width: 18px;
  height: 14px;
  border: 1px solid var(--red-color-red-main);
  border-radius: 3px;
  top: 2px;
}
.shop-bag-icon::before {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: -9px;
  height: 8px;
  border: 1px solid var(--red-color-red-main);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.shop-bag-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  font-size: 10px;
  font-family: var(--red-font-sans-regular);
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1;
}
.shop-cart {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}
.shop-cart.is-open {
  pointer-events: auto;
}
.shop-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 200ms ease;
}
.shop-cart.is-open .shop-cart-backdrop {
  opacity: 1;
}
.shop-cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--red-color-cream-main);
  box-shadow: -20px 0 40px rgba(33, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 240ms ease;
  display: flex;
  flex-direction: column;
}
.shop-cart.is-open .shop-cart-drawer {
  transform: translateX(0);
}
.shop-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(33, 0, 0, 0.08);
}
.shop-cart-header h3 {
  margin: 0;
  font-family: var(--red-font-sans-regular);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: capitalize;
  color: var(--red-color-red-main);
}
.shop-cart-close {
  border: 1px solid rgba(33, 0, 0, 0.2);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--red-color-red-main);
  font-size: 14px;
  font-family: var(--red-font-sans-regular);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.shop-cart-close:hover {
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
}
.shop-cart-shipping {
  padding: 16px 24px 12px;
}
.shop-cart-shipping-text {
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(33, 0, 0, 0.7);
  margin-bottom: 10px;
}
.shop-cart-shipping-bar {
  height: 3px;
  background: rgba(33, 0, 0, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.shop-cart-shipping-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red-color-red-main);
  transition: width 200ms ease;
}
.shop-cart-items {
  padding: 8px 24px 16px;
  overflow-y: auto;
  flex: 1;
}
.shop-cart-empty {
  padding: 40px 24px;
  text-align: center;
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  color: rgba(33, 0, 0, 0.6);
}
.shop-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(33, 0, 0, 0.08);
  position: relative;
}
.shop-cart-thumb {
  width: 72px;
  height: 88px;
  background: #f6f1e8;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.shop-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-cart-info {
  display: grid;
  gap: 6px;
}
.shop-cart-name {
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-color-red-main);
}
.shop-cart-meta {
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  color: rgba(33, 0, 0, 0.6);
}
.shop-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 0, 0, 0.16);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}
.shop-cart-qty-btn {
  border: none;
  background: transparent;
  color: var(--red-color-red-main);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
}
.shop-cart-qty-value {
  min-width: 26px;
  text-align: center;
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  color: var(--red-color-red-main);
}
.shop-cart-price {
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  color: var(--red-color-red-main);
  margin-top: 0px;
}
.shop-cart-remove {
  position: absolute;
  right: 0;
  bottom: 20px;
  border: none;
  background: transparent;
  color: var(--red-color-red-main);
  cursor: pointer;
  padding: 4px;
}
.shop-cart-remove svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.shop-cart-divider {
  height: 1px;
  background: rgba(33, 0, 0, 0.08);
}
.shop-cart-footer {
  padding: 12px 24px 20px;
  display: grid;
  gap: 12px;
}
.shop-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(33, 0, 0, 0.12);
  background: transparent;
  padding: 10px 12px;
  font-family: var(--red-font-sans-regular);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-color-red-main);
  cursor: pointer;
}
.shop-cart-summary {
  display: grid;
  gap: 10px;
}
.shop-cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  color: var(--red-color-red-main);
}
.shop-cart-note {
  font-family: var(--red-font-sans-regular);
  font-size: 11px;
  color: rgba(33, 0, 0, 0.55);
}
.shop-cart-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--red-font-sans-regular);
  font-size: 11px;
  color: rgba(33, 0, 0, 0.7);
}
.shop-cart-terms a {
  color: inherit;
}
.shop-cart-checkout {
  border: none;
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  font-family: var(--red-font-sans-regular);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
}
.shop-cart-view {
  border: 1px solid rgba(33, 0, 0, 0.2);
  background: transparent;
  color: var(--red-color-red-main);
  font-family: var(--red-font-sans-regular);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
}
body.is-cart-open {
  overflow: hidden;
}
.shop-flyer {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(33, 0, 0, 0.25);
  will-change: transform, opacity;
}
@keyframes shopBagPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1199px) {
  .panel-shop {
    padding: 8rem 0;
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .panel-shop {
      padding: 8rem 1.5rem;
  }
}
@media (max-width: 640px) {
  /* .shop-grid {
    grid-template-columns: 1fr;
  } */
  .shop-item {
    padding: 0;
  }
  .panel-shop .panel-title {
    font-size: 18px;
    letter-spacing: .08em;
  }
}


.panel-contact-sheet {
  background: var(--red-color-red-main);
  padding: clamp(10rem, 14vw, 18rem) 0;
  overflow: hidden;
}
.contact-sheet-mask {
  width: 100%;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.contact-sheet-belts {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
}
.contact-sheet-row {
  width: 100%;
  overflow: visible;
}
.contact-sheet-belts .contact-sheet-row:last-child {
  padding-bottom: 50px;
}
.contact-sheet-track {
  display: inline-flex;
  align-items: center;
  /* gap: clamp(10px, 1.2vw, 18px); */
  width: max-content;
  animation: contactSheetLeft var(--belt-duration, 46s) linear infinite;
}
.contact-sheet-track.is-reverse {
  animation: contactSheetRight var(--belt-duration, 46s) linear infinite;
}
.contact-sheet-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 320px);
  margin: 0 8px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}
.contact-sheet-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes contactSheetLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes contactSheetRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .contact-sheet-tile {
    width: clamp(160px, 34vw, 260px);
  }
}
@media (max-width: 640px) {
  .contact-sheet-belts {
    gap: clamp(10px, 2.8vw, 16px);
  }
  .contact-sheet-tile {
    width: clamp(150px, 50vw, 220px);
  }
}

.panel-historyblurb {
  --historyblurb-fill: 0%;
  position: relative;
  background: var(--red-color-red-main);
  color: var(--red-color-cream-main);
  min-height: 170vh;
  padding: clamp(10rem, 14vw, 18rem) clamp(1.6rem, 6vw, 6rem);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.historyblurb-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  justify-items: center;
}
.historyblurb-headline {
  position: relative;
  width: min(1400px, 100%);
}
.historyblurb-text {
  font-family: var(--red-font-sans-regular);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: -0.04em;
  font-size: clamp(3.6rem, 11vw, 13.0rem);
  line-height: 0.92;
  text-align: center;
}
.historyblurb-text--base {
  color: rgba(255, 255, 255, 0.20);
}
.historyblurb-text--fill {
  color: var(--red-color-cream-main);
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 calc(100% - var(--historyblurb-fill)) 0);
  will-change: clip-path;
  pointer-events: none;
}
.historyblurb-line {
  display: block;
}
.historyblurb-script {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-family: var(--red-font-hero-italic);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.08em;
  color: var(--red-color-cream-main);
  mix-blend-mode: screen;
  opacity: 0.86;
}
.historyblurb-cta-wrap {
  display: flex;
  justify-content: center;
}
.historyblurb-cta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 1.0rem 3.0rem;
  border-radius: 999px;
  border: 2px solid var(--red-color-cream-main);
  color: var(--red-color-cream-main);
  font-family: var(--red-font-sans-regular);
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: normal;
  font-size: 1.3rem;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.historyblurb-cta:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.14);
  /* box-shadow: 0 14px 45px rgba(0, 0, 0, 0.35); */
}
.historyblurb-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.historyblurb-float {
  position: absolute;
  width: clamp(140px, 18vw, 280px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.historyblurb-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.historyblurb-float--1 {
  top: 6%;
  left: 6%;
}
.historyblurb-float--2 {
  top: 12%;
  right: 6%;
}
.historyblurb-float--3 {
  bottom: 26%;
  left: 10%;
}
.historyblurb-float--4 {
  bottom: 12%;
  right: 4%;
  width: clamp(200px, 22vw, 320px);
}
.historyblurb-float--5 {
  top: 44%;
  right: 18%;
}
@media (max-width: 1024px) {
  
.panel-contact-sheet {
  background: var(--red-color-red-main);
  padding: clamp(10rem, 14vw, 18rem) 0;
  overflow: hidden;
}
.contact-sheet-mask {
  width: 100%;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.contact-sheet-belts {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
}
.contact-sheet-row {
  width: 100%;
  overflow: hidden;
}
.contact-sheet-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  width: max-content;
  animation: contactSheetLeft var(--belt-duration, 46s) linear infinite;
}
.contact-sheet-track.is-reverse {
  animation: contactSheetRight var(--belt-duration, 46s) linear infinite;
}
.contact-sheet-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 320px);
  margin: 0 8px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}
.contact-sheet-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes contactSheetLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes contactSheetRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .contact-sheet-tile {
    width: clamp(160px, 34vw, 260px);
  }
}
@media (max-width: 640px) {
  .contact-sheet-belts {
    gap: clamp(10px, 2.8vw, 16px);
  }
  .contact-sheet-tile {
    width: clamp(150px, 50vw, 220px);
  }
}

.panel-historyblurb {
    min-height: 140vh;
  }
  .historyblurb-text {
    font-size: clamp(3.2rem, 10vw, 8.6rem);
  }
  .historyblurb-float {
    opacity: 0.92;
  }
}
@media (max-width: 768px) {
  .header-logo {
    top: 1.5rem;
    left: 3%;
  }
  .header-menu {
    top: 1.3rem;
  }
  .footer-social {
    bottom: 1.5rem;
  }
  .shop-headline {
    font-size: clamp(4rem, 6vw, 20rem);
  }  
  .shop-grid.shop-grid--titlebar .shop-item:nth-child(2) {
    display: none;
  }
  .panel-shop .panel-title {
    grid-template-columns: 1fr 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-meta {
    gap: 2px;
    padding: 8px 8px;
  }
  .shop-name, .shop-price {
    font-size: 11px;
  }
  .panel-contact-sheet {
    background: var(--red-color-red-main);
    padding: clamp(10rem, 14vw, 18rem) 0;
    overflow: hidden;
  }
  .contact-sheet-mask {
    width: 100%;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .contact-sheet-belts {
    display: grid;
    gap: clamp(12px, 1.4vw, 20px);
  }
  .contact-sheet-row {
    width: 100%;
    overflow: hidden;
  }
  .contact-sheet-track {
    display: inline-flex;
    align-items: center;
    /* gap: clamp(10px, 1.2vw, 18px); */
    width: max-content;
    animation: contactSheetLeft var(--belt-duration, 46s) linear infinite;
  }
  .contact-sheet-track.is-reverse {
    animation: contactSheetRight var(--belt-duration, 46s) linear infinite;
  }
  .contact-sheet-tile {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    flex: 0 0 auto;
    width: clamp(180px, 22vw, 320px);
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  }
  .contact-sheet-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  @keyframes contactSheetLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes contactSheetRight {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @media (max-width: 1024px) {
    .contact-sheet-tile {
      width: clamp(160px, 34vw, 260px);
    }
  }
  @media (max-width: 640px) {
    .contact-sheet-belts {
      gap: clamp(10px, 2.8vw, 16px);
    }
    .contact-sheet-tile {
      width: clamp(150px, 50vw, 220px);
    }
  }

.panel-historyblurb {
    padding: clamp(8rem, 16vw, 12rem) clamp(1.4rem, 5vw, 3.2rem);
    min-height: 120vh;
  }
  .historyblurb-text {
    text-align: left;
    line-height: 0.98;
  }
  .historyblurb-headline {
    width: 100%;
  }
  .historyblurb-cta-wrap {
    width: 100%;
  }
  .historyblurb-float--4 {
    right: 2%;
  }
  .historyblurb-float--5 {
    display: none;
  }
  .typing-container .reveal-type {
    font-size: 3rem;
  }
  .panel-whatido .panel-title.offset-1.text-cream {
    margin-left: 0;
    padding-left: 1.5rem;
  }
  .whatido-item {
    padding-left: 1.5rem;
  }
  .panel-mask-rows .mask-rows .row {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .panel-mask-rows ul li {
    padding: .5rem 0;
  }
  .history-year {
    font-size: 24px;
  }
  .historyblurb-text {
    text-align: center;
    font-size: clamp(5.2rem, 8vw, 8.6rem);
  }
  .anim-headline__word, .anim-headline__word--base {
    font-size: clamp(3rem, 15vw, 20rem);
  }
  .panel-anim-headline {
    min-height: 0;
  }
  .anim-headline {
    min-height: 50vh;
  }
  .anim-headline__word {
    --raise-base: -150%;
    --raise-step: -90%;
  }
  .anim-headline__word.downfall {
    --raise-base: 50%;
    --raise-step: 90%;
  }
  .motto-title {
    font-size: 14px;
  }
  .historyblurb-cta {
    font-size: 16px;
  }
  .footer-quote__line {
    font-size: clamp(1.5rem, 7vw, 6rem);
  }
  .about-hero-name {
    white-space: normal;
    font-size: clamp(6rem, 16vw, 20rem);
    text-align: center;
    line-height: .8;
  }
  .interior-page .panel-module .panel-container.about-hero-content {

  }
  .interior-page .panel-module p.about-hero-tagline {
    font-size: 18px;
    font-weight: 300;
  }
  .about-hero-scroll {
    font-size: 13px;
  }
  .about-marquee-track {
    font-size: clamp(5rem, 50vw, 22rem);
  }
  .panel-container.panel-default-padding.about-story-content {
    padding: 6rem 1.5rem;
  }
  .about-full-skills-tree {
    padding-bottom: 6rem;
  }
  
}

.panel-typing--clients {
    background: url("/assets/images/wallpaper_studio_br_jp_plaid_desktop.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

