@charset "utf-8";

.conceptkv {
  height: calc(100svh - var(--header-height));
  opacity: 0;
}
.conceptkv__content {
  height: 100%;
  grid-template-columns: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}
.conceptkv__content__group {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.conceptkv__content__group__photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}
.conceptkv__content__group__photo img {
  height: 200%;
  object-fit: cover;
}
.conceptkv__content__group__desc {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  grid-template: ". . ." minmax(0, 1fr)
  ". jacopy ." auto
  "heading encopy ." auto
  ". . ." minmax(0, 1fr)
  / minmax(0, 1fr) auto minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  font-size: clamp(12px, calc(15 / 1400 * 100vw), 15px);
}
.conceptkv__content__group__desc__heading {
  grid-area: heading;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}
.conceptkv__content__group__desc__jacopy {
  grid-area: jacopy;
  margin-bottom: 1em;
  font-size: calc(32 / 15 * 100%);
  letter-spacing: .4em;
  writing-mode: vertical-rl;
}
.conceptkv__content__group__desc__encopy {
  grid-area: encopy;
  font-size: calc(32 / 15 * 100%);
  letter-spacing: .2em;
}
.conceptkv__content__scroll {
  justify-self: end;
  width: fit-content;
  box-sizing: border-box;
  padding: calc(40 / 14 * 1em) calc(30 / 14 * 1em);
  font-size: clamp(11px, calc(14 / 1920 * 100vw), 14px);
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .conceptkv {
    height: calc(100svh - var(--actionbtn-height));
  }
}
@media screen and (max-width: 768px){
  .conceptkv {
    height: calc(100svh - var(--actionbtn-height));
  }
  .conceptkv__content__group__desc {
    grid-template: ". . ." minmax(0, 1fr)
    ". jacopy ." auto
    ". encopy ." auto
    ". . ." minmax(0, 1fr)
    ". heading ." auto
    ". . ." 30px
    / minmax(0, 1fr) auto minmax(0, 1fr);
    align-content: end;
    align-items: end;
    font-size: min(calc(12 / 375 * 100vw), 12px);
  }
  .conceptkv__content__group__desc__jacopy {
    margin-bottom: 2em;
    font-size: calc(20 / 12 * 100%);
  }
  .conceptkv__content__group__desc__encopy {
    font-size: calc(13 / 12 * 100%);
  }
  .conceptkv__content__scroll {
    padding: 11px 8px;
    font-size: 10px;
  }
}



/* .story {
} */
.story__content {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 50%;
  align-items: end;
}
.story__content__desc {
  grid-template-columns: auto;
  place-content: center;
  place-items: center;
  height: 100svh;
}
.story__content__desc--0 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  /* justify-self: end;
  width: 50%; */
  justify-self: center;
  width: 100%;
  padding-top: var(--header-height);
}
.story__content__desc:not(.story__content__desc--0) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  grid-template-columns: calc(var(--window-half-width) * .05) minmax(0, 600px) calc(var(--window-half-width) * .05);
  grid-template-rows: minmax(0, 1fr) auto 5svh auto minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: start;
}
.story__content__desc__heading {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
/* .story__content__desc__copy {
} */
.story__content__desc--0 .story__content__desc__copy {
  line-height: 3;
  text-align: center;
}
.story__content__desc:not(.story__content__desc--0) .story__content__desc__copy {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}
.story__content__photo {
  grid-column: 1 / 2;
}
.story__content__view {
  grid-column: 1 / 3;
  position: relative;
  z-index: 1;
}
.story__content__view__photo {
  height: 100svh;
}
.story__content__view__photo img {
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.story__content__view__heading {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .story__content {
    grid-template-columns: minmax(0, 1fr) 30%;
  }
}
@media screen and (max-width: 768px){
  .story__content {
    grid-template-columns: minmax(0, 1fr) calc(300 / 375 * 100%) minmax(0, 1fr);
    align-items: start;
  }
  .story__content__desc {
    grid-template-columns: 100%;
    justify-items: start;
    height: auto;
  }
  .story__content__desc--0 {
    grid-column: 2 / 3;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    padding-block: 170px 70px;
  }
  .story__content__desc:not(.story__content__desc--0) {
    grid-column: 2 / 3;
    grid-row: auto;
    position: relative;
    grid-template-columns: 100%;
    grid-template-rows: 100px auto 65px auto 65px;
    align-content: start;
  }
  .story__content__desc__heading {
    grid-column: 1 / 2;
    justify-self: end;
  }
  .story__content__desc--2 .story__content__desc__heading,
  .story__content__desc--4 .story__content__desc__heading {
    justify-self: start;
  }
  .story__content__desc--0 .story__content__desc__copy {
    width: 100%;
  }
  .story__content__desc:not(.story__content__desc--0) .story__content__desc__copy {
    grid-column: 1 / 2;
  }
  .story__content__photo {
    grid-column: 1 / 4;
  }
  .story__content__view {
    grid-column: 1 / 4;
  }
  .story__content__view__heading {
    translate: -50% -70%;
  }
}



.gallery {
  padding-top: 270px;
}
.gallery__content {
  align-items: start;
}
.gallery__content--1 {
  grid-template: ". desc . photo1 photo1 photo1 ." auto
  ". desc . . . . ." 32px
  ". desc . photo2 . photo3 ." auto
  / max(32px, calc(var(--window-half-width) - 770px)) minmax(0, 1fr) 32px min(calc(440 / 1540 * 100%), 440px) 32px min(calc(440 / 1540 * 100%), 440px) max(32px, calc(var(--window-half-width) - 770px));
}
.gallery__content--2 {
  grid-template: ". . . . . . . ." 32px
  ". photo1 photo1 photo1 . photo2 . ." auto
  ". . . . . . . ." 32px
  ". . . photo3 . . . ." auto
  ". . . . . . . ." 32px
  ". photo4 . photo5 photo5 photo5 photo5 ." auto
  / max(32px, calc(var(--window-half-width) - 770px)) min(calc(440 / 1540 * 100%), 440px) 32px min(calc(440 / 1540 * 100%), 440px) 32px min(calc(440 / 1540 * 100%), 440px) minmax(0, 1fr) 32px;
}
.gallery__content__desc {
  grid-area: desc;
}
/* .gallery__content__desc__enheading {
} */
.gallery__content__desc__heading {
  width: fit-content;
  margin-block: auto !important;
  padding-top: clamp(120px, calc(220 / 1200 * 100vw), 220px);
  translate: -3em;
}
.gallery__content__photo {
  width: 100%;
}
.gallery__content__photo--1 {
  grid-area: photo1;
}
.gallery__content__photo--2 {
  grid-area: photo2;
}
.gallery__content__photo--3 {
  grid-area: photo3;
}
.gallery__content__photo--4 {
  grid-area: photo4;
}
.gallery__content__photo--5 {
  grid-area: photo5;
}
.gallery__content--2 .gallery__content__photo--2 {
  align-self: end;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__content--2 {
    grid-template-columns: max(32px, calc(var(--window-half-width) - 770px)) minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 0 max(32px, calc(var(--window-half-width) - 770px));
  }
}
@media screen and (max-width: 768px){
  .gallery {
    padding-top: 170px;
  }
  .gallery__content--1 {
    grid-template: "desc desc desc desc desc" auto
    ". . . . ." 65px
    ". photo1 photo1 photo1 ." auto
    ". . . . ." 8px
    ". photo2 . . ." auto
    ". . . . ." 8px
    ". . . photo3 ." auto
    / 8px minmax(0, 1fr) 8px minmax(0, 1fr) 8px;
  }
  .gallery__content--2 {
    grid-template: ". . . . ." 8px
    ". photo1 photo1 photo1 ." auto
    ". . . . ." 65px
    ". photo2 . . ." auto
    ". . . . ." 8px
    ". . . photo3 ." auto
    ". . . . ." 8px
    ". photo4 . . ." auto
    ". . . . ." 65px
    ". photo5 photo5 photo5 ." auto
    / 8px minmax(0, 1fr) 8px minmax(0, 1fr) 8px;
  }
  .gallery__content__desc {
    width: calc(300 / 375 * 100%);
    justify-self: center;
  }
  /* .gallery__content__desc__enheading {
  } */
  .gallery__content__desc__heading {
    margin-block: calc(var(--margin-top) + var(--leading-trim)) calc(var(--margin-bottom) + var(--leading-trim)) !important;
    padding-top: 65px;
    translate: 0;
  }
  .gallery__content--2 .gallery__content__photo--2 {
    translate: 31px;
  }
  .gallery__content--2 .gallery__content__photo--3 {
    translate: -31px;
  }
  .gallery__content--2 .gallery__content__photo--4 {
    translate: 31px;
  }
}