html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-size: contain;
  width: 100%;
  background-attachment: scroll;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ background layers ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */


.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #4d81bd;
}

.background-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  z-index: 1;
  mix-blend-mode: overlay;
}

.background-layer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: none;
}

.background-layer img.active {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.background-layer img:first-child {
  opacity: 1;
}

@media (max-width: 1500px) {

  .background-layer {
    width:110%;
  }

}

/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ background gradients ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */



/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ fonts ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

@font-face {
  font-family: "clubbed to life";
  src: url("/fonts/ClubbedToLife.otf") format("opentype");
}

@font-face {
  font-family: "alte haas grotesk bold";
  src: url("/fonts/AlteHaasGroteskBold.ttf") format("truetype");
}

@font-face {
  font-family: "alte haas grotesk regular";
  src: url("/fonts/AlteHaasGroteskRegular.ttf") format("truetype");
}


/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ header ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.header {
  width: 100%;
  height:auto;
  margin-top: 3vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.subtitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35vw;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(35, 104, 165, .5) 15%,
    rgba(35, 104, 165, .5) 85%,
    transparent 100%
  );
}

.subtitle-text {
  font-family: "clubbed to life";
  color: white;
  font-size: calc(.5rem + 1vw);
  letter-spacing: .1rem;
  text-align: center;
  margin: 5px;
}

@media (max-width: 768px) {

  .header img {
    width: 200%;
  }

  .subtitle {
    width: 80vw;
  }

  .subtitle-text {
    font-size: 1rem;
  }

}


/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ spin ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.orbit-container {
  width: 40vw;
  height: 40vw; 
  margin: 0 auto;
  position: relative;
  margin-bottom: 3vh;
  margin-top: 3vh;
}

.orbit-ring {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
  display: block;
}

.orbit-ring svg {
  width: 100%;
  height: 100%;
  display: block;
}

.orbit-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%; 
  height: 35%;
  object-fit: contain;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@media (max-width: 1500px) {

  .orbit-container {
    margin-top: 6vh;
    margin-bottom: 7vh;
  }
  
}

@media (max-width: 768px) {

  .orbit-container {
    width: 90vw;
    height: 90vw;
    margin-top: 10vh;
    margin-bottom: 5vh;
  }
  
}


/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ section header ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */


.section-header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-top: 3vh;
  padding-top:2vh;
  margin-bottom: 0vh;
}

.section-line {
  flex: 1;
  height: 3px;
  background-color: white;
}

.section-line.short {
  flex: 0 0 10vw;
}

.section-title {
  font-family: "clubbed to life";
  letter-spacing: .1rem;
  color: white;
  font-size: calc(1.5rem + 2vw);
  white-space: nowrap;
}


/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ project section ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.project-slide {
  display: none;
  flex-direction: column;
  width: 100%;
}

.project-slide.active {
  display: flex;
}

.project-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.project-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  padding: 0 10vw;
  box-sizing: border-box;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  gap: 2vh;
  z-index: 2;
  width: 40vw;
  padding-top: 8vh;
  padding-bottom: 4vh;
}

.project-title {
  font-family: "clubbed to life";
  font-weight: normal;
  font-size: calc(2rem + 3vw);
  letter-spacing: .1rem;
  color: white;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.project-subtitle-box {
  display: flex;
  align-items: flex-start;
  height: 10vh;
  width: 20vw;
  margin-bottom: 2vh;
}

.project-subtitle {
  font-family: "alte haas grotesk regular";
  font-size: 1rem;
  color: white;
  margin: 0;
  line-height: 1.4;
}

.explore-row {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.explore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  color: white;
  font-family: "clubbed to life";
  font-weight: normal;
  font-size: calc(1rem + 1vw);
  letter-spacing: .1rem;
  padding: 1vh 2vw;
  padding-top: .5vh;
  padding-bottom: 1vh;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: rgba(255, 255, 255, .2);
}

.arrow {
  background: none;
  border: none;
  font-size: 60px;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 0;
  line-height: 1;
}

.arrow:hover {
  font-size: 70px;
  transition: font-size 0.3s ease;
  cursor: pointer;
}

.arrow-left {
  color: white;
  position: absolute;
  left: 2vw;
}

.arrow-right {
  color: #4d81bd;
  position: absolute;
  right: 2vw;
}

.project-image a {
  width: 35vw;
  height: 25vw;
  flex-shrink: 0;
  margin-right: 5vw;
  margin-bottom: 2vh;
  margin-top: 0vh;
  padding: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .2s;
}

.project-image a:hover {
  transform: scale(1.1);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4vh;
}

.project-year {
  font-family: "clubbed to life";
  font-weight: normal;
  font-size: 2rem;
  color: white;
  margin: 0;
  padding-left: 10vw;
  display: flex;
  align-items: center;
  height: 100%;
}

.project-tags {
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(35, 104, 165, .5) 20%,
    rgba(35, 104, 165, .5) 100%,
    transparent 0%
  );
  padding: 0 6vw;
  text-align: right;
}

.project-tags span {
  font-family: "clubbed to life";
  color: white;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {

  .project-layout {
    flex-direction: column;
    padding: 0 6vw;
  }

  .project-info {
    width: 100%;
    padding-top: 3vh;
    padding-bottom: 2vh;
  }

  .project-image a {
    order: 3; 
    width: calc(100% - 16vw);
    height: 30vh;
    padding: 0;
    margin: 5vh 8vw;
  }
  
  .project-subtitle-box {
    height: 7vh;
    width: 87vw;
    margin-bottom: .5vh;
  }

  .explore-btn {
    padding-top: .1vh;
    padding-bottom: .3vh;
    font-size: 1rem;
    border: 2px solid white;
  }

  .arrow {
    font-size: 50px;
  }
  
  .arrow:hover {
    font-size: 60px;
  }

  .arrow-left {
    position: absolute !important;
    top: 85vw !important;
    left: 2vw !important;
    transform: none !important;
  }

  .arrow-right {
    position: absolute !important;
    top: 85vw !important;
    right: 2vw !important;
    transform: none !important;
  }

  .project-footer {
    margin-top: 2vh;
    height: 6vh;
  }

  .project-year {
    font-size: 1rem;
    padding-left: 6vw;
  }

  .project-tags {
    padding: 0 3vw;
  }

}

/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ carousel ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.carousel {
  width: 100%;
  overflow: hidden;
  padding: 2vh 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 3px;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex-shrink: 0;
  width: 15vw;
  height: 10vw;
  outline: 3px solid white;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {

  .carousel-item {
    height:10vh;
    width:25vw;
  }
  
}

/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ contact ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */


.contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4vh 10vw;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32vh;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  max-width: 35vw;
  align-self: flex-start;
  align-items: stretch;
}

.contact-text {
  font-family: "alte haas grotesk regular";
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.contact-about {
  display: flex;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  align-items: flex-end;
}

footer {
  padding: 2vh 10vw;
  width: 100%;
  box-sizing: border-box;
}

.footer-text {
  font-family: "alte haas grotesk regular";
  color: #669fd5;
  font-size: 0.8rem;
  margin: 0;
}

.footer-text a {
  text-decoration: none;
}


@media (max-width: 768px) {

  .contact {
    flex-direction: column;
    margin-top: -8vh;
    padding: 4vh 6vw;
    align-items: stretch; 
  }

  .contact-left {
    max-width: 100%;
    gap: 2vh;
    padding: 0; 
  }

  .contact-about {
    display: flex;
    margin-top: 5vh;
    padding: 0 15vw;
  }

  .contact-about .explore-btn {
    flex: 1;
    text-align: center;
  }

  .contact-right {
    margin-top: 2vh;
    align-items: stretch;
    gap: 2vh;
    padding: 0 15vw; 
  }

  .contact-text {
    font-size: 1rem;
  }
}



/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ about page ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.about-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 25% 45%, #ffffff 0%, #81cee0 20%, #6CAFD2 30%, #4d81bd 70%);
}

.about-background::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  z-index: 1;
  mix-blend-mode: overlay;
}

.about {
  padding: 4vh 10vw;
  box-sizing: border-box;
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 7vw;
  margin-bottom: 6vh;
  margin-top: 3vh;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3vh;
  flex-shrink: 0;
}

.back-arrow {
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.about-portrait {
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  margin-top:-7vh;
  margin-left: 4vw;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  max-width: 45vw;
  margin-left: 6vw;
}

.about-text {
  font-family: "alte haas grotesk regular";
  color: white;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.about-text strong {
  font-family: "alte haas grotesk bold";
  font-weight: normal;
}

.about-links {
  display: flex;
  gap: 5vw;
  justify-content: center;
  margin-top: 10vh;
}


@media (max-width: 768px) {

  .about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 25%, #ffffff 0%, #81cee0 20%, #6CAFD2 30%, #4d81bd 70%);
  }
  
  .about {
    padding: 4vh 6vw;
  }
  
  .about-layout {
    flex-direction: column;
  }

  .about-portrait {
    width: 80vw;
    height: 80vw;
    margin-left: 0;
  }

  .about-right {
    max-width: 88vw;
    margin-left: 0vw;
  }

  .about-links {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0vh;
    margin-bottom: 10vh;
    margin-left: 15vw;
    margin-right: 15vw;
  }
}


/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ project page ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */

.project-page {
  height: auto;
  position: relative;
}

.project-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  z-index: 0;
  mix-blend-mode: overlay;
}

.page-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: radial-gradient(ellipse at 50% 0%, white 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.project-page .section-header {
  position: relative;
  z-index: 1;
}

/* ── Arrows ── */

aside.arrow-right {
  position: fixed;
  right: 2vw;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 1000;
}

aside.arrow-left {
  position: fixed;
  left: 2vw;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 1000;
}

.arrow-text {
  font-size: 60px;
  text-decoration: none;
}

.arrow-text a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 60px;
}

.arrow-text a:hover {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 70px;
  transition: font-size 0.3s ease;
  cursor: pointer;
}

/* ── Hero ── */

.pp-hero {
  display: flex;
  gap: 4vw;
  padding: 6vh 10vw 4vh 10vw;
  position: relative;
  z-index: 1;
}

.pp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  width: 28vw;
  flex-shrink: 0;
}

.pp-hero-right {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  flex: 1;
}

.pp-img-main {
  width: 100%;
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
}

.pp-img-main img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.pp-img-duo {
  display: flex;
  gap: 2vw;
  width: 100%;
  padding: 0 10vw 4vh 10vw;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.pp-img-trio {
  display: flex;
  gap: 2vw;
  width: 100%;
  padding: 0 10vw 4vh 10vw;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.pp-img-trio-large {
  flex: 1.6;
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
  overflow: hidden;
  height: auto;
}

.pp-img-trio-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-img-trio-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  height: 42vw;
}

.pp-img-trio-small {
  flex: 1;
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
  overflow: hidden;
}

.pp-img-trio-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Shared image sizes ── */

.pp-img-standard {
  width: 100%;
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
}

.pp-img-standard-t {
  width: 100%;
}

.pp-img-standard img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.pp-img-standard-t img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.pp-img-standard iframe {
  width: 100%;
  display: block;
  object-fit: contain;
}

.pp-img-large {
  width: 55%;
  flex-shrink: 0;
}

/* ── Text styles ── */

.pp-title {
  font-family: "clubbed to life";
  font-weight: normal;
  font-size: 5rem;
  color: white;
  margin: 0;
  line-height: 1.1;
  letter-spacing: .1rem;
}

.pp-body {
  font-family: "alte haas grotesk regular";
  color: white;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.pp-caption {
  font-family: "alte haas grotesk regular";
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  padding-top: 1vh;
}

.pp-caption a {
  color: white;
}

/* ── Motives ── */

.pp-motives {
  display: flex;
  gap: 4vw;
  padding: 4vh 10vw;
  position: relative;
  z-index: 1;
  align-items: center;
}


.pp-motives-left {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  flex: 1;
  margin-top: 4vh;
}

.pp-motives-right {
  width: 28vw;
  flex-shrink: 0;
}

.pp-motives-center {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  flex: 1;
  margin-top: 4vh;
  margin-left: 15vw;
  margin-right: 15vw;
  margin-bottom: 4vh;
}

.pp-motive-item {
  display: flex;
  gap: 2vw;
  align-items: flex-start;
}

.pp-motive-num {
  font-family: "clubbed to life";
  font-size: 3vw;
  color: white;
  flex-shrink: 0;
  line-height: 1;
  width: 5vw;
  display: inline-block;
}

/* ── Text + Image layouts ── */

.pp-text-image {
  display: flex;
  gap: 4vw;
  padding: 4vh 10vw;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.pp-image-text {
  display: flex;
  gap: 4vw;
  padding: 4vh 10vw;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.pp-text-image-left {
  width: 28vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.pp-text-image-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

/* ── Details matter ── */

.pp-details {
  display: flex;
  gap: 3vw;
  padding: 4vh 10vw;
  position: relative;
  z-index: 1;
}

.pp-details-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.pp-img-equal {
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
  width: 100%;
  aspect-ratio: 7/6;
  overflow: hidden;
}

.pp-img-equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-img-equal-u {
  box-shadow: rgba(25, 49, 83, 0.5) 0px 7px 29px 0px;
  width: 100%;
  overflow: hidden;
}

.pp-img-equal-u img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.pp-img-equal-t {
  width: 100%;
  overflow: hidden;
}

.pp-img-equal-t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── User flow ── */

.pp-userflow {
  padding: 4vh 10vw;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  position: relative;
  z-index: 1;
}

.pp-flow-title {
  font-family: "clubbed to life";
  letter-spacing: .1rem;
  font-weight: normal;
  font-size: 2.5rem;
  color: white;
  margin: 0;
}

.pp-flow-row {
  display: flex;
  gap: 2vw;
}

.pp-flow-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}


/* ── Other projects ── */

.other-projects {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  margin-top: 8vh;
  padding-bottom: 5vh;
}

.other-projects-item {
  flex: 1;
  height: 15vw;
  outline: 3px solid white;
  cursor: pointer;
  overflow: hidden;
}

.other-projects-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* ✦ ───────────────────────────────────────────── ✦
         ✦·┈๑⋅⋯ mobile ⋯⋅๑┈·✦
✦ ───────────────────────────────────────────── ✦ */



@media (max-width: 768px) {

  .pp-hero {
    flex-direction: column;
    padding: 4vh 6vw;
  }

  .pp-hero-left {
    width: 100%;
  }

  .pp-title {
    font-size: 3rem;
  }

  .pp-img-duo {
    flex-direction: column;
    padding: 0 6vw 4vh 6vw;
  }

  .pp-img-trio {
    flex-direction: column;
    padding: 0 6vw 4vh 6vw;
  }

  .pp-img-trio-stack {
    height: auto;
  }

  .pp-text-image {
    flex-direction: column;
    padding: 4vh 6vw;
  }

  .pp-image-text {
    flex-direction: column;
    padding: 4vh 6vw;
  }

  .pp-text-image-left {
    width: 100%;
  }

  .pp-motives {
    flex-direction: column;
    padding: 4vh 6vw;
  }

  .pp-motives-right {
    width: 100%;
  }

  .pp-motives-center {
    margin-left: 0;
    margin-right: 0;
  }

  .pp-motive-num {
    font-size: 2rem;
    width: auto;
  }

  .pp-details {
    flex-direction: column;
    padding: 4vh 6vw;
  }

  .pp-userflow {
    padding: 4vh 6vw;
  }

  .pp-flow-row {
    flex-direction: column;
  }

}