/* CSS Variables for animations */
:root {
  --transition-medium: 400ms;
  --ease-elegant: cubic-bezier(0.4, 0.0, 0.2, 1);
}

.brand-guidelines {
  background-color: #ffffff;
  max-width: 100vw;
  overflow: hidden;
}

/* Base section styling - now uses standardized classes */
.brand-guidelines__section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Remove custom height - will be applied via standardized classes */
  margin-top: -1px;
}

/* Section variants with standardized dimensions */
.brand-guidelines__section--profile {
  background-color: #ffffff;
  margin-top: 8rem;
}

.brand-guidelines__section--vision {
  background-color: #716a5e;
  overflow: hidden;
  background-image: url("https://c.animaapp.com/vHSlxtr9/img/v2-luxe360--brand-book-2025-2.png");
}

.brand-guidelines__section--mission {
  background-color: #ffffff;
  overflow: visible;
  padding: 0;
  border-bottom: 1px solid black;
}

.brand-guidelines__section--founder {
  background-color: #716a5e;
  background-image: url(https://c.animaapp.com/vHSlxtr9/img/overlay.png);
  background-size: cover;
  background-position: center;
}

.brand-guidelines__section--values {
  background-color: #868d90;
  background-image: url(https://c.animaapp.com/vHSlxtr9/img/overlay-1.png);
  background-size: cover;
  background-position: center;
}

.brand-guidelines__section--core-values {
  position: relative;
  overflow: hidden;
}

.brand-guidelines__section--core-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6c7363;
  background-size: cover;
  z-index: 0;
}

.brand-guidelines__section--positioning {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 8rem;
  overflow: hidden;
}

.brand-guidelines__section--voice {
  position: relative;
  background-color: #868d90;
  overflow: hidden;
}

.brand-guidelines__section--phrases::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 50%;
  height: 101%;
  background-color: #777166;
  background-image: url(https://c.animaapp.com/vHSlxtr9/img/overlay-4.png);
  background-size: cover;
  z-index: 0;
}

.brand-guidelines__section--muse-lola, .brand-guidelines__section--muse-scarlett {
  background-color: #ffffff;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-guidelines__content-wrapper {
  /* Remove custom width - will use .section-width--contained class */
  position: relative;
  margin-top: 5rem;
}

.brand-guidelines__section-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(60px, 7vw, 83px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-top: 2rem;
  text-align: left;
  margin-left: 3rem;
  margin-bottom: 2rem;
}

.brand-guidelines__profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding: 1px;
}

.brand-guidelines__profile-item:nth-child(1)::before {
  content: "test";
  width: 1000%;
  position: absolute;
  height:1px;
  border-top: 1px solid black;
  top: -1px;
  left: -200%
}

.brand-guidelines__profile-item::after {
  content: " ";
  width: 1000%;
  position: absolute;
  height:1px;
  border-top: 1px solid black;
  bottom: -1px;
  left: -200%
}

@media (max-width: 1024px) {
  .brand-guidelines__profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-guidelines__profile-grid {
    grid-template-columns: 1fr;
  }
}

.brand-guidelines__profile-item {
  display: flex;
  flex-direction: column;
  border-left: 1px solid black;
  border-bottom: none;
  gap: 1rem;
  padding: 4rem 3rem;
  position: relative;
}

.brand-guidelines__profile-label {
  font-family: "Playfair Display", Helvetica;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.36px;
}

.brand-guidelines__profile-text {
  font-family: "Playfair Display", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0.3px;
}

.brand-guidelines__vision-wrapper {
  width: 100%;
  /* padding: 105px 0; */
  border-left: 1px solid white;
  border-right: 1px solid white;
  height: 100%;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}

.brand-guidelines__vision-bg {
  width: 100%;
  height: auto;
  display: block;
}

.brand-guidelines__vision-content {display: flex;flex-direction: row;justify-content: space-around;align-items: center;gap: 3rem;}

@media (max-width: 768px) {
  .brand-guidelines__vision-content {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 40px 20px;
    max-width: 100%;
  }
}

.brand-guidelines__vision-title {
  color: #ffffff;
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(37px, 5vw, 69px);
  margin-top: 15px;
}

.brand-guidelines__vision-statement {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1 1 100%;
  width: 100%;
  max-width: 38%;
  margin: auto;
  padding-right: 4%;
}

.brand-guidelines__vision-main {
  font-weight: 700;
  padding-bottom: 2rem;
  display: -webkit-box;
}

.brand-guidelines__vision-emphasis {
  font-style: italic;
  font-weight: 700;
}

.brand-guidelines__vision-description {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

.brand-guidelines__vision-circle {
  width: clamp(400px, 40vw, 664px);
  height: clamp(400px, 40vw, 664px);
  border: 2px solid #f7f7f7;
  border-radius: 100%;
  flex: 0 0 clamp(400px, 40vw, 664px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-guidelines__vision-circle.circle-element::before {
  content: 'test';
  position: absolute;
  bottom: 0;
  left: -500%;
  height:10px;
  width: 1000%;
  border-bottom: 1px solid white;
}

.brand-guidelines__vision-circle.circle-element::after {
  content: 'test';
  position: absolute;
  top: 0;
  left: -500%;
  height:10px;
  width: 1000%;
  border-top: 1px solid white;
}

@media (max-width: 1024px) {
  .brand-guidelines__vision-circle {
    display: none;
  }
}

.brand-guidelines__mission-wrapper {
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 80vh;
  margin: auto;
  overflow: visible;
}

@media (max-width: 1024px) {
  .brand-guidelines__mission-wrapper {
    flex-direction: column;
  }
}

.brand-guidelines__mission-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  text-align: center;
  max-width: 1440px;
  height: 100%;
  margin: auto;
}

.brand-guidelines__mission-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(60px, 7vw, 83px);
  color: #000000;
  margin-bottom: 20px;
  padding: 3rem 0 0 0;
  width: 100%;
  text-align: left;
}

.brand-guidelines__mission-summary {
  font-family: "Playfair Display", Helvetica;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  max-width: 350px;
  line-height: 1.6;
  text-align: left;
}

.brand-guidelines__mission-description {
  font-family: "Playfair Display", Helvetica;
  font-size: 15px;
  color: #000000;
  max-width: clamp(300px, 40vw, 450px);
  line-height: 1.6;
  text-align: justify;
  width: 100%;
  margin-top: 2rem;
  padding-right: clamp(3rem, 6vw, 1px);
}

.brand-guidelines__mission-image-wrapper {
  flex: 1;
  background-color: #868d90;
  padding: 072px 110px 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 50%;
  outline: 1px solid #868D91;
  /* box-sizing: content-box; */
}

.brand-guidelines__mission-image {
  object-fit: contain;
  max-width: clamp(450px,31vw,500px);
  height: 100%;
  width: auto;
}

.brand-guidelines__founder-wrapper {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-guidelines__founder-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-guidelines__founder-titles {
  position: relative;
  /* height: 300px; */
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 5rem 4rem;
  row-gap: 0.5rem;
  line-height: 5rem;
  border-left: 1px solid white;
}

.brand-guidelines__founder-title-fashion, .brand-guidelines__founder-title-athlete, .brand-guidelines__founder-title-mom {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(50px, 6vw, 82px);
  color: #ffffff;
  text-transform: uppercase;
}

.brand-guidelines__founder-title-founder, .brand-guidelines__founder-title-lifelong, .brand-guidelines__founder-title-four {
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(50px, 6vw, 82px);
  color: #ffffff;
  font-style: italic;
}

.brand-guidelines__founder-title-fashion {flex: 0;}

.brand-guidelines__founder-title-founder {flex: 0;}

.brand-guidelines__founder-title-lifelong {flex: 0;}

.brand-guidelines__founder-title-athlete {flex: 0;}

.brand-guidelines__founder-title-mom {flex: 0;min-width: clamp(320px, 33vw, 370px);}

.brand-guidelines__founder-title-four {flex: 0;}

.brand-guidelines__founder-description {
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 700px;
  padding-top: 3rem;
}

.brand-guidelines__values-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5%;
  border-right: 1px solid white;
  justify-content: center;
}

@media (max-width: 1024px) {
  .brand-guidelines__values-wrapper {
    flex-direction: column;
  }
}

.brand-guidelines__values-venn {
  flex: 1;
  height: auto;
  width: clamp(467px, 42vw, 560px);
}

.brand-guidelines__values-content {
  flex: 1 0 38%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 462px;
  width: 100%;
  padding-right: 3%;
}

.brand-guidelines__values-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(70px, 7vw, 89px);
  color: #ffffff;
  line-height: 0.85;
}

.brand-guidelines__values-intro {
  font-family: "Playfair Display", Helvetica;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
}

.brand-guidelines__values-description {
  font-family: "Playfair Display", Helvetica;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

.brand-guidelines__core-values-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  margin: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
  padding: 5vh 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .brand-guidelines__core-values-wrapper {
    flex-direction: column;
  }
}

.brand-guidelines__core-value {
  flex: 1 1 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 33.333333%;
  justify-content: flex-start;
  height: 401px;
  padding: 0 2%;
}

.brand-guidelines__core-value-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(34px, 5vw, 65px);
  color: #ffffff;
  text-transform: uppercase;
}

.brand-guidelines__core-value-subtitle {
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

.brand-guidelines__core-value-description {
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(20px, 2vw, 22px);
  color: #ffffff;
  line-height: 1.4;
  max-width: 400px;
}

.brand-guidelines__emphasis {
  font-style: italic;
  font-weight: 700;
}

.brand-guidelines__positioning-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  position: relative;
  padding: 0;
}

.brand-guidelines__positioning-wrapper::before {
  content: "test";
  border-left: 1px solid black;
  height: 200vh;
  position:absolute;
  top: -50vh
}

@media (max-width: 1024px) {
  .brand-guidelines__positioning-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.brand-guidelines__positioning-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 2rem;
}

.brand-guidelines__positioning-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(70px, 8vw, 100px);
  color: #000000;
  line-height: 0.85;
}

.brand-guidelines__positioning-description {
  font-family: "Playfair Display", Helvetica;
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  max-width: 400px;
}

.brand-guidelines__positioning-tagline {
  font-family: "Playfair Display", Helvetica;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

.brand-guidelines__positioning-lines {
  flex: 1;
  max-width: clamp(484px, 52vw, 684px);
  height: auto;
  transform: translate(-239px, -51px);
  height: 100%;
}

.brand-guidelines__voice-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  overflow: visible;
  height: 100%;
}

.brand-guidelines__voice-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow: visible;
  align-items: center;
  position: relative;
  justify-content: center;
}

.brand-guidelines__voice-traits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  flex-direction: row;
}

.brand-guidelines__voice-traits--left {
  align-items: flex-end;
  left: 20px;
  position: absolute;
  top: calc(50% - 300px);
  z-index: -1;
}

.brand-guidelines__voice-traits--right {
  align-items: flex-start;
  left: -20%;
  position: absolute;
  bottom: calc(50% - 300px);
  z-index: -1;
}

.brand-guidelines__voice-trait {
  padding: 11px 40px;
  border: 1.5px solid #ede9e1;
  border-radius: 25px;
  font-family: "Dallas", Helvetica;
  font-size: 16px;
  color: #ede9e1;
  text-align: center;
  white-space: nowrap;
  min-width: 243px;
  font-weight: 200;
}

.brand-guidelines__voice-center {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  /* width: 100%; */
  padding: 5rem 0 5rem 0;
}

.brand-guidelines__voice-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(80px, 10vw, 120px);
  color: #ede9e1;
  line-height: 0.85;
}

.brand-guidelines__voice-main {
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  color: #ede9e1;
  line-height: 1.6;
  max-width: 381px;
  text-align: left;
}

.brand-guidelines__voice-detail {
  font-family: "Playfair Display", Helvetica;
  font-size: 14px;
  color: #ede9e1;
  line-height: 1.6;
  text-align: justify;
  max-width: 368px;
}

.brand-guidelines__voice-film-strip {
  width: 94%;
  height: auto;
  margin: auto;
}

.brand-guidelines__voice-film-strip-container {
  background-color: #ede9e1;
  min-width: 516px;
  display: flex;
  max-height: 100%;
  height: 100%;
  position: relative;
  right: 18%;
}

.brand-guidelines__phrases-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  width: 100%;
}

@media (max-width: 1024px) {
  .brand-guidelines__phrases-wrapper {
    flex-direction: column;
  }
}

.brand-guidelines__phrases-traits {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0;
  margin-right: 3rem;
}

.brand-guidelines__phrase-trait {
  padding: clamp(8px, 2vw, 19px) clamp(8px, 3vw, 20px);
  border: 1.5px solid #785d31;
  border-radius: 35px;
  font-family: "Dallas-Light", Helvetica;
  font-size: clamp(14px, 4vw, 21px);
  color: #785d31;
  text-align: center;
  white-space: nowrap;
  max-width: clamp(420px, 40vw, 620px);
}

.brand-guidelines__phrases-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 23px;
  text-align: right;
  align-items: flex-end;
}

.brand-guidelines__phrases-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(62px, 5vw, 74px);
  color: #ffffff;
  line-height: 0.85;
  text-align: right;
}

.brand-guidelines__phrases-description {
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 360px;
  text-align: right;
}

.brand-guidelines__muse-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  width: 100%;
}

.brand-guidelines__muse-wrapper--reverse {
  flex-direction: row;
}

@media (max-width: 1024px) {
  .brand-guidelines__muse-wrapper {
    flex-direction: column;
  }
  .brand-guidelines__muse-wrapper--reverse {
    flex-direction: column;
  }
}

.brand-guidelines__muse-image {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.brand-guidelines__muse-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: flex-end;
  align-items: center;
  margin-top: 3rem;
  padding: 0 5% 0 2%;
}

.brand-guidelines__muse-section-title {
  font-family: "Dallas-Bold", Helvetica;
  font-size: clamp(60px, 7vw, 80px);
  color: #000000;
  line-height: 0.85;
  text-align: right;
  width: 100%;
  max-width: 900px;
}

.brand-guidelines__muse-details {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: 6%;
  max-width: 864px;
}

@media (max-width: 768px) {
  .brand-guidelines__muse-details {
    flex-direction: column;
    gap: 40px;
  }
}

.brand-guidelines__muse-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-start;
  position: relative;
  padding-right: 2rem;
}

.brand-guidelines__muse-info::after {
  content: ' ';
  border-left: 1px solid black;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  /* min-height: 900px; */
}

.brand-guidelines__muse-name {
  font-family: "Dallas", Helvetica;
  color: #000000;
  line-height: 0.85;
  text-align: right;
  font-weight: 500;
  font-size: 45px;
  width: 100%;
  text-align: left;
}

.brand-guidelines__muse-subtitle {
  font-family: "Playfair Display", Helvetica;
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 3rem;
}

.brand-guidelines__muse-label {
  font-weight: 400;
}

.brand-guidelines__muse-type {
  font-style: italic;
}

.brand-guidelines__muse-bio {
  font-family: "Playfair Display", Helvetica;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
  max-width: 360px;
  margin-bottom: 1rem;
}

.brand-guidelines__muse-characteristics {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  gap: 1rem;
}

.brand-guidelines__muse-trait {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-guidelines__muse-trait-title {
  font-family: "Playfair Display", Helvetica;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
}

.brand-guidelines__muse-trait-text {
  font-family: "Playfair Display", Helvetica;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 1024px) {
  .brand-guidelines__section {
    padding: 80px 20px;
  }
  .brand-guidelines__voice-wrapper {
    flex-direction: column;
  }
  .brand-guidelines__voice-wrapper .brand-guidelines__voice-content {
    flex-direction: column;
    align-items: center;
  }
  .brand-guidelines__voice-wrapper .brand-guidelines__voice-traits {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-guidelines__voice-wrapper .brand-guidelines__voice-traits--left, .brand-guidelines__voice-wrapper .brand-guidelines__voice-traits--right {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .brand-guidelines__section {
    padding: 60px 20px;
    min-height: auto;
  }
  .brand-guidelines__founder-titles {
    height: 200px;
  }
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-fashion,
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-athlete,
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-mom,
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-founder,
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-lifelong,
  .brand-guidelines__founder-titles .brand-guidelines__founder-title-four {
    font-size: clamp(30px, 5vw, 50px);
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .brand-guidelines__voice-center {
    flex: 1 1 auto;
    text-align: center;
  }
  .brand-guidelines__phrases-content {
    flex: 1 1 auto;
    text-align: center;
    align-items: center;
    padding-right: 0;
  }
  .brand-guidelines__phrases-title, .brand-guidelines__phrases-description {
    text-align: center;
  }
}
.brand-guidelines__mission-profile-container {
  border-left: 1px solid black;
  border-right: 1px solid black;
  
}
.brand-guidelines-mission-text-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 72vH;
  padding-left: 3rem;
  border-bottom: 1px solid black;
  width: 100%;
  position: relative;
  overflow: visible;
}

.brand-guidelines__focus-value-image {
  position: absolute;
  z-index: -1;
  right: 66.6666%;
  width: 33.33333%;
  left: 33.33333%;
  top: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.brand-guidelines__passion-value-image {
  position: absolute;
  z-index: -1;
  right: 66.6666%;
  width: 33.33333%;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.brand-guidelines__balance-value-image {
  position: absolute;
  z-index: -1;
  width: 33.33333%;
  left: 66.6666%;
  top: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.brand-guidelines__core-values-wrapper::after {
  content: "";
  color: white;
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: -500%;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  width: 1000%;
}


/* Founder Section Animations */
.brand-guidelines__founder-title-fashion,
.brand-guidelines__founder-title-founder,
.brand-guidelines__founder-title-lifelong,
.brand-guidelines__founder-title-athlete,
.brand-guidelines__founder-title-mom,
.brand-guidelines__founder-title-four {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-medium) var(--ease-elegant),
              transform var(--transition-medium) var(--ease-elegant);
  will-change: opacity, transform;
}

/* Staggered animation delays */
.brand-guidelines__founder-title-fashion {
  transition-delay: 100ms;
}

.brand-guidelines__founder-title-founder {
  transition-delay: 200ms;
}

.brand-guidelines__founder-title-lifelong {
  transition-delay: 300ms;
}

.brand-guidelines__founder-title-athlete {
  transition-delay: 400ms;
}

.brand-guidelines__founder-title-mom {
  transition-delay: 500ms;
}

.brand-guidelines__founder-title-four {
  transition-delay: 600ms;
}

/* Animate state - triggered when section becomes visible */
.content-section--animate .brand-guidelines__founder-title-fashion,
.content-section--animate .brand-guidelines__founder-title-founder,
.content-section--animate .brand-guidelines__founder-title-lifelong,
.content-section--animate .brand-guidelines__founder-title-athlete,
.content-section--animate .brand-guidelines__founder-title-mom,
.content-section--animate .brand-guidelines__founder-title-four {
  opacity: 1;
  transform: translateX(0);
}

.brand-guidelines-mission-text-container::before {
  content: " ";
  position: absolute;
  height: 490px;
  width: 50px;
  left: -1px;
  bottom: -185px;
  z-index: 29;
}

.brand-guidelines__profile-item:nth-child(3n+1) {
  border-left: none;
}

.brand-guidelines__positioning-border-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  background-color: black;
  border-left: 1px solid black;
}

.brand-guidelines__positioning-border-top-bottom {
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: -500%;
  width: 1000%;
  border-left: none;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  border-right: none;
}

.brand-guidelines__muse-content.brand-guidelines__muse-content__scarlett {
  margin-left: 7%;
  margin-right: 0;
  margin-top: 6rem;
  padding-right: 0;
}