@charset "UTF-8";
/* L for Life Case Study — Figma artboard 1512×982
   Display: FK Screamer Trial Black
   Body: Awaking / Urbanist fallback
*/
@font-face {
  font-family: "FK Screamer Trial";
  src: url("../../fonts/FKScreamerTrial-Black.woff2") format("woff2"), url("../../fonts/FKScreamerTrial-Black.woff") format("woff"), url("../../fonts/FKScreamerTrial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Awaking";
  src: url("../../fonts/Awaking-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Awaking";
  src: url("../../fonts/Awaking-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Awaking";
  src: url("../../fonts/Awaking-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Elicyon";
  src: url("../fonts/Elicyon-Regular.woff2") format("woff2"), url("../fonts/Elicyon-Regular.woff") format("woff"), url("../fonts/Elicyon-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.lf-case-page {
  --lf-display: FK Screamer Trial, Anton, Impact, Arial Narrow, sans-serif;
  --lf-body: Awaking;
  background: #000 !important;
  color: #fff;
}

html:has(.lf-case-page) {
  background: #000 !important;
}

.lf-case-page,
.lf-case-page #scroll-container,
.lf-case-page .smooth-scroll {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
}

.lf-case-page .brand-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
}

.lf-case-page .footer-block {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.lf-case-page .footer-block .social-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-case-page .footer-block .social-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.lf-case-page .footer-block .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

.lf-hero {
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(110 / 1512 * 100vw);
  padding-bottom: calc(49 / 1512 * 100vw);
}
@media (max-width: 991px) {
  .lf-hero {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.lf-hero__content {
  text-align: center;
  margin: 6rem 1rem;
}

.lf-hero__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: calc(97.6 / 1512 * 100vw);
  color: #fff;
  margin: 0 0 calc(14 / 1512 * 100vw);
  letter-spacing: 0.01em;
}

.lf-hero__subtitle {
  margin: 0 auto;
  max-width: 500px;
  font-family: "Awaking";
  font-style: normal;
  font-weight: 300;
  font-size: 21px;
  text-align: center;
  color: #FFFFFF;
}

.lf-hero__gallery-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: auto;
}

.lf-hero__gallery {
  display: flex;
  align-items: center;
  gap: calc(40 / 1512 * 100vw);
  width: max-content;
  animation: lf-gallery-scroll 55s linear infinite;
}
.lf-hero__gallery:hover {
  animation-play-state: paused;
}

.lf-hero__gallery-item {
  flex-shrink: 0;
  height: calc(442 / 1512 * 100vw);
  overflow: hidden;
}
.lf-hero__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lf-hero__gallery-item--narrow {
  width: calc(451 / 1512 * 100vw);
}
.lf-hero__gallery-item--wide {
  width: calc(700 / 1512 * 100vw);
}

@keyframes lf-gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .lf-hero__content {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 32px;
  }
  .lf-hero__title {
    font-size: clamp(36px, 10vw, 72px);
    margin-bottom: 16px;
  }
  .lf-hero__subtitle {
    font-size: clamp(15px, 4vw, 19px);
    max-width: 90%;
  }
  .lf-hero__gallery {
    gap: 16px;
    animation-duration: 30s;
  }
  .lf-hero__gallery-item {
    height: 220px;
  }
  .lf-hero__gallery-item--narrow {
    width: 200px;
  }
  .lf-hero__gallery-item--wide {
    width: 310px;
  }
}
@media (max-width: 575px) {
  .lf-hero__gallery-item {
    height: 180px;
  }
  .lf-hero__gallery-item--narrow {
    width: 160px;
  }
  .lf-hero__gallery-item--wide {
    width: 250px;
  }
}
.lf-house {
  position: relative;
  min-height: calc(982 / 1512 * 100vw);
  background: #fff;
  color: #000;
  overflow: hidden;
}

.lf-house__branch {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
}
.lf-house__branch--tl {
  top: 3%;
  left: -28%;
  width: calc(661 / 1512 * 100vw);
  transform: rotate(-65.46deg) scaleY(-1);
}
.lf-house__branch--br {
  top: 52.5793650794vw;
  left: 70.1440846001vw;
  width: calc(914 / 1512 * 100vw);
  transform: rotate(-155.46deg) scaleY(-1);
  filter: drop-shadow(40px 154px 54px rgba(0, 0, 0, 0.15));
}

.lf-house__badge {
  position: absolute;
  top: calc(130 / 1512 * 100vw);
  left: calc(114 / 1512 * 100vw);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: calc(6.5 / 1512 * 100vw);
}

.lf-house__badge-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: calc(287 / 1512 * 100vw);
  height: calc(55 / 1512 * 100vw);
  padding: calc(14.6 / 1512 * 100vw) calc(27.6 / 1512 * 100vw);
  background: #d3d3d3;
  border-radius: calc(6.5 / 1512 * 100vw);
  font-family: "Elicyon", "Bodoni Moda", Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19.9061px;
  line-height: 24px;
  color: #000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lf-house__badge-bar {
  background: #d3d3d3;
  border-radius: calc(3.2 / 1512 * 100vw);
  height: calc(55 / 1512 * 100vw);
  flex-shrink: 0;
}
.lf-house__badge-bar--wide {
  width: calc(17 / 1512 * 100vw);
}
.lf-house__badge-bar--narrow {
  width: calc(10 / 1512 * 100vw);
}

.lf-house__inner {
  position: relative;
  z-index: 2;
  padding: calc(220 / 1512 * 100vw) calc(114 / 1512 * 100vw) calc(80 / 1512 * 100vw);
  text-align: center;
}

.lf-house__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: calc(132.6 / 1512 * 100vw);
  line-height: 1;
  color: #000;
  margin: 0;
}

.lf-house__title-line {
  display: block;
}

.lf-house__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 / 1512 * 100vw);
  margin-top: calc(12 / 1512 * 100vw);
}

.lf-house__video-wrap {
  position: relative;
  flex-shrink: 0;
  width: calc(159 / 1512 * 100vw);
  height: calc(102 / 1512 * 100vw);
  border-radius: calc(17.8 / 1512 * 100vw);
  overflow: visible;
}

.lf-house__video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(17.8 / 1512 * 100vw);
}

.lf-house__play {
  position: absolute;
  bottom: calc(-18 / 1512 * 100vw);
  left: calc(-16 / 1512 * 100vw);
  width: calc(66 / 1512 * 100vw);
  height: calc(66 / 1512 * 100vw);
  border: none;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 calc(4 / 1512 * 100vw);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.lf-house__play img {
  display: block;
  width: calc(25 / 1512 * 100vw);
  height: calc(25 / 1512 * 100vw);
}
.lf-house__play:hover {
  transform: scale(1.05);
}

.lf-house__copy {
  max-width: calc(924 / 1512 * 100vw);
  margin: calc(68 / 1512 * 100vw) auto 0;
  font-family: "Awaking";
  font-size: calc(29.2 / 1512 * 100vw);
  font-weight: 400;
  line-height: 1.622;
  color: #000;
  text-align: left;
}

@media (max-width: 991px) {
  .lf-house {
    min-height: auto;
  }
  .lf-house__branch {
    opacity: 0.5;
  }
  .lf-house__branch--tl {
    top: -80px;
    left: -180px;
    width: 280px;
  }
  .lf-house__branch--br {
    top: auto;
    bottom: -60px;
    left: auto;
    right: -120px;
    width: 320px;
  }
  .lf-house__badge {
    top: 40px;
    left: 20px;
  }
  .lf-house__badge-text {
    min-width: 160px;
    height: 40px;
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 5px;
  }
  .lf-house__badge-bar {
    height: 40px;
    border-radius: 3px;
  }
  .lf-house__badge-bar--wide {
    width: 12px;
  }
  .lf-house__badge-bar--narrow {
    width: 8px;
  }
  .lf-house__inner {
    padding: 100px 20px 20px;
  }
  .lf-house__title {
    font-size: clamp(40px, 11vw, 90px);
  }
  .lf-house__title-row {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
  .lf-house__video-wrap {
    width: 140px;
    height: 90px;
    border-radius: 14px;
  }
  .lf-house__video-thumb {
    border-radius: 14px;
  }
  .lf-house__play {
    width: 48px;
    height: 48px;
    bottom: -12px;
    left: -10px;
    padding-left: 3px;
  }
  .lf-house__play img {
    width: 18px;
    height: 18px;
  }
  .lf-house__copy {
    margin-top: 20px;
    font-size: clamp(16px, 4vw, 22px);
    text-align: center;
  }
}
@media (max-width: 575px) {
  .lf-house__title {
    font-size: clamp(32px, 10vw, 48px);
  }
  .lf-house__branch {
    display: none;
  }
}
.lf-video {
  position: relative;
  width: 100%;
  min-height: calc(982 / 1512 * 100vw);
  background: #000;
  overflow: hidden;
}

.lf-video__frame {
  position: relative;
  width: 100%;
  min-height: calc(982 / 1512 * 100vw);
}

.lf-video__media {
  display: block;
  width: 100%;
  height: calc(982 / 1512 * 100vw);
  object-fit: cover;
  object-position: center;
}

.lf-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(66 / 1512 * 100vw);
  height: calc(66 / 1512 * 100vw);
  border: none;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 calc(4 / 1512 * 100vw);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.lf-video__play img {
  display: block;
  width: calc(23 / 1512 * 100vw);
  height: calc(26 / 1512 * 100vw);
}
.lf-video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #1a1a1a;
}

@media (max-width: 991px) {
  .lf-video,
  .lf-video__frame {
    min-height: 60vh;
  }
  .lf-video__media {
    height: 60vh;
    min-height: 400px;
  }
  .lf-video__play {
    width: 56px;
    height: 56px;
    padding-left: 3px;
  }
  .lf-video__play img {
    width: 20px;
    height: 22px;
  }
}
@media (max-width: 575px) {
  .lf-video__media {
    min-height: 320px;
  }
  .lf-video__play {
    width: 48px;
    height: 48px;
  }
  .lf-video__play img {
    width: 18px;
    height: 20px;
  }
}
.lf-realisation {
  position: relative;
  background: #fff;
  color: #000;
  overflow: hidden;
  width: 100%;
}

.lf-realisation__root {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lf-realisation__root--right {
  right: 0;
  bottom: 0;
}
.lf-realisation__root--left {
  left: 0;
  top: 0;
}

.lf-realisation__root-inner {
  overflow: hidden;
}
.lf-realisation__root-inner img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.lf-realisation__watermark {
  position: absolute;
  left: 50%;
  top: calc(-75 / 1512 * 100vw);
  transform: translateX(-50%);
  margin: 0;
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: calc(343.106 / 1512 * 100vw);
  color: #f6f6f6;
  letter-spacing: calc(34.3106 / 1512 * 100vw);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.lf-realisation__inner {
  position: relative;
  z-index: 1;
  padding: 160px 10px 100px;
  text-align: center;
}

.lf-realisation__label {
  margin: 0;
  text-align: center;
  font-family: "Awaking";
  font-size: calc(29.183 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
}

.lf-realisation__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: calc(159.064 / 1512 * 100vw);
  color: #242323;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .lf-realisation__title {
    margin-top: 20px;
  }
}

.lf-realisation__logo {
  display: block;
  width: calc(140 / 1512 * 100vw);
  height: calc(140 / 1512 * 100vw);
  margin: calc(-40 / 1512 * 100vw) auto 0;
}
.lf-realisation__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lf-realisation__subtitle {
  margin: 0 auto;
  font-family: "Awaking";
  font-size: calc(50.879 / 1512 * 100vw);
  font-weight: 400;
  line-height: 1.05;
  color: #374537;
  text-align: center;
  white-space: normal;
}
.lf-realisation__subtitle span {
  display: block;
}

.lf-realisation__footer-copy {
  margin: calc(80 / 1512 * 100vw) auto 0;
  width: calc(924 / 1512 * 100vw);
  max-width: 100%;
  font-family: "Awaking";
  font-size: calc(29.183 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
  text-align: center;
}

@media (max-width: 991px) {
  .lf-realisation__root {
    opacity: 0.75;
  }
  .lf-realisation__watermark {
    font-size: clamp(90px, 13vw, 170px);
    top: -20px;
    letter-spacing: 0.08em;
  }
  .lf-realisation__inner {
    padding: 40px 20px 40px;
  }
  .lf-realisation__label {
    font-size: clamp(14px, 2.6vw, 20px);
  }
  .lf-realisation__title {
    font-size: clamp(44px, 7vw, 90px);
  }
  .lf-realisation__logo {
    width: 90px;
    height: 90px;
    margin-top: -20px;
  }
  .lf-realisation__subtitle {
    width: min(90vw, 520px);
    font-size: clamp(22px, 4.5vw, 44px);
  }
  .lf-realisation__footer-copy {
    width: min(90vw, 520px);
    font-size: clamp(14px, 2.6vw, 20px);
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .lf-realisation__root {
    display: none;
  }
}
.lf-logo {
  position: relative;
  background: #fff;
  color: #000;
  overflow: hidden;
  width: 100%;
}

.lf-logo__watermark {
  position: absolute;
  left: 50%;
  top: calc(-75 / 1512 * 100vw);
  transform: translateX(-50%);
  margin: 0;
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: calc(343.106 / 1512 * 100vw);
  color: #f6f6f6;
  letter-spacing: calc(34.3106 / 1512 * 100vw);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.lf-logo__inner {
  position: relative;
  z-index: 1;
  padding: 100px 10px;
}

.lf-logo__label {
  margin: 0;
  text-align: center;
  font-family: "Awaking";
  font-size: calc(29.183 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
}

.lf-logo__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 180px;
  text-align: center;
  text-transform: uppercase;
  color: #242323;
  margin-bottom: 5rem;
}
@media (max-width: 1500px) {
  .lf-logo__title {
    font-size: 150px;
    line-height: 1;
    margin-bottom: 4rem;
  }
}
@media (max-width: 1400px) {
  .lf-logo__title {
    font-size: 130px;
    line-height: 1;
    margin-bottom: 3rem;
  }
}
@media (max-width: 1100px) {
  .lf-logo__title {
    font-size: 110px;
    line-height: 1;
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .lf-logo__title {
    margin-top: 16px;
    font-size: 100px;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .lf-logo__title {
    font-size: 70px;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .lf-logo__title {
    font-size: 50px;
    margin-top: 10px;
  }
}

.lf-logo__title-highlight {
  position: relative;
}

.lf-logo__badge {
  position: absolute;
  top: 8rem;
  right: 5rem;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1500px) {
  .lf-logo__badge {
    top: 6rem;
    right: 3rem;
  }
}
@media (max-width: 1100px) {
  .lf-logo__badge {
    top: 5rem;
    right: 2rem;
  }
}
@media (max-width: 991px) {
  .lf-logo__badge {
    position: unset;
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .lf-logo__badge {
    width: 56px;
    height: 56px;
  }
}

.lf-logo__grid-wrap {
  position: relative;
}

.lf-logo__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, calc(194.547 / 1512 * 100vw));
  gap: 0;
  width: fit-content;
  margin: 0 auto;
}

.lf-logo__tile {
  position: relative;
  width: calc(194.547 / 1512 * 100vw);
  height: calc(194.547 / 1512 * 100vw);
  overflow: hidden;
}
.lf-logo__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}
.lf-logo__tile--earth {
  border-radius: 150px 0px 0px 150px;
}
.lf-logo__tile--earth::after {
  border-radius: 150px 0px 0px 150px;
}
.lf-logo__tile--water {
  border-radius: calc(41.514 / 1512 * 100vw) calc(84.657 / 1512 * 100vw) 0 0;
  border-radius: 0px 100px 0px 60px;
  transform: rotate(180deg);
}
.lf-logo__tile--water::after {
  border-radius: 0px 100px 0px 60px;
}
.lf-logo__tile--water .lf-logo__tile-icon {
  transform: translate(-50%, -50%) rotate(180deg);
}
.lf-logo__tile--fire {
  border-radius: 120px 0 150px 150px;
  transform: rotate(-90deg);
}
.lf-logo__tile--fire::after {
  border-radius: 120px 0 150px 150px;
}
.lf-logo__tile--fire .lf-logo__tile-icon {
  transform: translate(-50%, -50%) rotate(90deg);
}
.lf-logo__tile--air {
  border-radius: 130px 0 130px 0;
  transform: rotate(180deg);
}
.lf-logo__tile--air::after {
  border-radius: 130px 0 130px 0;
}
.lf-logo__tile--air .lf-logo__tile-icon {
  transform: translate(-50%, -50%) rotate(180deg);
}
.lf-logo__tile--space {
  border-radius: 0px 50px 150px 40px;
  transform: rotate(90deg);
}
.lf-logo__tile--space::after {
  border-radius: 0px 50px 150px 40px;
}
.lf-logo__tile--space .lf-logo__tile-icon {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.lf-logo__tile--earth::after {
  background: rgba(0, 0, 0, 0.33);
}

.lf-logo__tile-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.lf-logo__tile-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.lf-logo__tile--fire .lf-logo__tile-icon {
  height: calc(44 / 1512 * 100vw);
}

.lf-logo__tile--water .lf-logo__tile-icon {
  height: calc(22 / 1512 * 100vw);
}

.lf-logo__ayurveda-wrap {
  position: absolute;
  right: 0;
  bottom: 50px;
}
@media (max-width: 1780px) {
  .lf-logo__ayurveda-wrap {
    right: 0px;
    bottom: 25px;
  }
}
@media (max-width: 1360px) {
  .lf-logo__ayurveda-wrap {
    right: 5px;
    bottom: 10px;
  }
}
@media (max-width: 1260px) {
  .lf-logo__ayurveda-wrap {
    right: -20px;
    bottom: 0px;
  }
}
@media (max-width: 1100px) {
  .lf-logo__ayurveda-wrap {
    display: none;
  }
}

.lf-logo__ayurveda {
  margin: 0;
  font-family: "Awaking";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: #000000;
  text-align: left;
}
@media (max-width: 1780px) {
  .lf-logo__ayurveda {
    font-size: 22px;
  }
}
@media (max-width: 1500px) {
  .lf-logo__ayurveda {
    font-size: 18px;
  }
}

.lf-logo__footer-copy {
  margin: calc(40 / 1512 * 100vw) auto 0;
  max-width: calc(924 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(24 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
  text-align: center;
}

@media (max-width: 991px) {
  .lf-logo__watermark {
    font-size: clamp(80px, 12vw, 160px);
    top: -20px;
    letter-spacing: 0.06em;
  }
  .lf-logo__inner {
    padding: 48px 20px 40px;
    min-height: auto;
  }
  .lf-logo__label {
    font-size: clamp(14px, 2.5vw, 20px);
  }
  .lf-logo__grid-wrap {
    margin-top: 32px;
  }
  .lf-logo__grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .lf-logo__tile {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }
  .lf-logo__tile-icon {
    height: clamp(18px, 4vw, 32px);
  }
  .lf-logo__tile--fire .lf-logo__tile-icon {
    height: clamp(22px, 5vw, 38px);
  }
  .lf-logo__tile--water .lf-logo__tile-icon {
    height: clamp(14px, 3vw, 22px);
  }
  .lf-logo__footer-copy {
    margin-top: 28px;
    font-size: clamp(14px, 2.6vw, 18px);
    padding: 0 10px;
  }
}
.lf-expanding {
  position: relative;
  background: #000;
  color: #fff;
  width: 100%;
  overflow: hidden;
}

.lf-expanding__inner {
  position: relative;
  max-width: calc(1512 / 1512 * 100vw);
  margin: 0 auto;
  padding: calc(92 / 1512 * 100vw) calc(40 / 1512 * 100vw) calc(120 / 1512 * 100vw);
}

.lf-expanding__label {
  margin: 0;
  text-align: center;
  font-family: "Awaking";
  font-size: calc(29.183 / 1512 * 100vw);
  line-height: 1.622;
  color: #fff;
}

.lf-expanding__hero {
  position: relative;
  margin-top: calc(24 / 1512 * 100vw);
}

.lf-expanding__hero-title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
  font-size: calc(152.249 / 1512 * 100vw);
  line-height: 1;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lf-expanding__hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 / 1512 * 100vw);
  width: 100%;
}
.lf-expanding__hero-row--bottom {
  gap: calc(24 / 1512 * 100vw);
}

.lf-expanding__hero-word {
  white-space: nowrap;
}
.lf-expanding__hero-word.creatively {
  position: relative;
}
.lf-expanding__hero-word.creatively img {
  position: absolute;
  right: -5.8rem;
  top: -3rem;
}
@media (max-width: 991px) {
  .lf-expanding__hero-word.creatively img {
    display: none;
  }
}

.lf-expanding__hero-wide {
  display: block;
  width: calc(223 / 1512 * 100vw);
  height: calc(128 / 1512 * 100vw);
  border-radius: calc(19 / 1512 * 100vw);
  object-fit: cover;
  flex-shrink: 0;
}

.lf-expanding__hero-thumbs {
  display: flex;
  align-items: center;
  gap: calc(3 / 1512 * 100vw);
  flex-shrink: 0;
}
.lf-expanding__hero-thumbs img {
  display: block;
  width: calc(70 / 1512 * 100vw);
  height: calc(128 / 1512 * 100vw);
  border-radius: calc(14 / 1512 * 100vw);
  object-fit: cover;
}

.lf-expanding__badge {
  position: relative;
  width: calc(148 / 1512 * 100vw);
  height: calc(148 / 1512 * 100vw);
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(22.03deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(49 / 1512 * 100vw) calc(10 / 1512 * 100vw) calc(49 / 1512 * 100vw) calc(11 / 1512 * 100vw);
  background-image: url("../images/lforlife-casestudy/expanding-badge-bg.jpg");
  background-size: 311% auto;
  background-position: -148% -45%;
  flex-shrink: 0;
}
.lf-expanding__badge p {
  margin: 0;
  max-width: calc(108 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(16.223 / 1512 * 100vw);
  line-height: 1.32;
  text-align: center;
  color: #fff;
  transform: rotate(-22.03deg);
  text-transform: none;
  font-weight: 400;
}

.lf-expanding__list {
  display: flex;
  flex-direction: column;
  gap: calc(73 / 1512 * 100vw);
  width: min(100%, 1192 / 1512 * 100vw);
  margin: calc(72 / 1512 * 100vw) auto 0;
}
@media (max-width: 991px) {
  .lf-expanding__list {
    gap: 30px;
    margin-top: 20px;
  }
}

.lf-expanding__item {
  display: grid;
  grid-template-columns: calc(527 / 1512 * 100vw) minmax(0, 1fr);
  column-gap: calc(68 / 1512 * 100vw);
  align-items: start;
}

.lf-expanding__item-media {
  width: 100%;
  height: calc(335 / 1512 * 100vw);
  border-radius: calc(30 / 1512 * 100vw);
  overflow: hidden;
  margin-top: calc(71 / 1512 * 100vw);
}
.lf-expanding__item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lf-expanding__item-media--offset img {
  width: 117.66%;
  max-width: none;
  margin-left: -4.07%;
}
.lf-expanding__item-media--overlay {
  position: relative;
}
.lf-expanding__item-media--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.lf-expanding__item-media--overlay img {
  width: 115.56%;
  max-width: none;
  height: 227%;
  margin-left: -7.78%;
  margin-top: -63.58%;
  object-fit: cover;
}

.lf-expanding__item-content {
  position: relative;
  padding-top: calc(71 / 1512 * 100vw);
}

.lf-expanding__item-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(473 / 1512 * 100vw);
  max-width: 100%;
  height: 1.5px;
  background: #FFFFFF;
}

.lf-expanding__item-title {
  margin: 0;
  font-family: "Awaking";
  font-size: calc(40.228 / 1512 * 100vw);
  line-height: 1.622;
  font-weight: 400;
  color: #fff;
}

.lf-expanding__item-copy {
  margin: calc(24 / 1512 * 100vw) 0 0;
  max-width: calc(592 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(20 / 1512 * 100vw);
  line-height: 1.622;
  color: #fff;
}

.lf-expanding__scroll-icon {
  position: absolute;
  right: calc(73 / 1512 * 100vw);
  top: calc(952 / 1512 * 100vw);
  width: calc(26 / 1512 * 100vw);
  height: calc(26 / 1512 * 100vw);
  pointer-events: none;
}

@media (max-width: 991px) {
  .lf-expanding__inner {
    padding: 40px 20px 40px;
  }
  .lf-expanding__label {
    font-size: clamp(14px, 2.5vw, 20px);
  }
  .lf-expanding__hero {
    margin-top: 24px;
    padding-bottom: 0;
  }
  .lf-expanding__hero-title {
    font-size: clamp(36px, 10vw, 72px);
    gap: 16px;
  }
  .lf-expanding__hero-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .lf-expanding__hero-row--bottom {
    flex-direction: column;
  }
  .lf-expanding__hero-wide {
    width: min(42vw, 180px);
    height: auto;
    aspect-ratio: 223/128;
    border-radius: 14px;
    display: none;
  }
  .lf-expanding__hero-thumbs img {
    width: 56px;
    height: 96px;
    border-radius: 10px;
  }
  .lf-expanding__badge {
    width: 120px;
    height: 120px;
    padding: 28px 10px;
    background-size: cover;
    background-position: center;
  }
  .lf-expanding__badge p {
    max-width: none;
    font-size: 12px;
  }
  .lf-expanding__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lf-expanding__item-media {
    height: auto;
    aspect-ratio: 527/335;
    margin-top: 0;
    border-radius: 18px;
  }
  .lf-expanding__item-media--offset img, .lf-expanding__item-media--overlay img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center;
  }
  .lf-expanding__item-content {
    padding-top: 0;
  }
  .lf-expanding__item-divider {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
  .lf-expanding__item-title {
    font-size: clamp(24px, 5vw, 34px);
  }
  .lf-expanding__item-copy {
    margin-top: 12px;
    max-width: none;
    font-size: clamp(15px, 3.5vw, 18px);
  }
  .lf-expanding__scroll-icon {
    display: none;
  }
}
.lf-outcome {
  position: relative;
  background: #fff;
  color: #000;
  min-height: calc(1000 / 1512 * 100vw);
  overflow: hidden;
  width: 100%;
}

.lf-outcome__watermark {
  position: absolute;
  left: 50%;
  top: calc(-75 / 1512 * 100vw);
  transform: translateX(-50%);
  margin: 0;
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: calc(343.106 / 1512 * 100vw);
  color: #f6f6f6;
  letter-spacing: calc(34.3106 / 1512 * 100vw);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.lf-outcome__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(180 / 1512 * 100vw) calc(40 / 1512 * 100vw) calc(80 / 1512 * 100vw);
}

.lf-outcome__label {
  margin: 0;
  font-family: "Awaking";
  font-size: calc(20 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
}

.lf-outcome__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin: calc(24 / 1512 * 100vw) auto 0;
  font-size: calc(143.523 / 1512 * 100vw);
  line-height: 0.839;
  color: #242323;
  text-transform: uppercase;
}
.lf-outcome__title span {
  display: block;
}

.lf-outcome__copy {
  margin: calc(48 / 1512 * 100vw) auto 0;
  max-width: calc(592 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(20 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
  text-align: center;
}

.lf-outcome__photo {
  position: absolute;
  z-index: 1;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.lf-outcome__photo--tl {
  left: calc(122 / 1512 * 100vw);
  top: calc(-111 / 1512 * 100vw);
  width: calc(281 / 1512 * 100vw);
  height: calc(293 / 1512 * 100vw);
  border-radius: calc(20 / 1512 * 100vw) calc(20 / 1512 * 100vw) calc(100 / 1512 * 100vw) calc(100 / 1512 * 100vw);
}
.lf-outcome__photo--tr {
  left: calc(1092 / 1512 * 100vw);
  top: calc(-93 / 1512 * 100vw);
  width: calc(301 / 1512 * 100vw);
  height: calc(293 / 1512 * 100vw);
  border-radius: calc(20 / 1512 * 100vw) calc(20 / 1512 * 100vw) calc(100 / 1512 * 100vw) calc(100 / 1512 * 100vw);
}
.lf-outcome__photo--ml {
  left: calc(-82 / 1512 * 100vw);
  top: calc(518 / 1512 * 100vw);
  width: calc(281 / 1512 * 100vw);
  height: calc(190 / 1512 * 100vw);
  border-radius: 0px 150px 150px 0;
}
.lf-outcome__photo--mr {
  left: calc(1337 / 1512 * 100vw);
  top: calc(270 / 1512 * 100vw);
  width: calc(281 / 1512 * 100vw);
  height: calc(190 / 1512 * 100vw);
  border-radius: 150px 0 0 150px;
}
.lf-outcome__photo--bl {
  left: calc(221 / 1512 * 100vw);
  top: calc(840 / 1512 * 100vw);
  width: calc(301 / 1512 * 100vw);
  height: calc(293 / 1512 * 100vw);
  border-radius: calc(100 / 1512 * 100vw) calc(100 / 1512 * 100vw) calc(20 / 1512 * 100vw) calc(20 / 1512 * 100vw);
}
.lf-outcome__photo--br {
  left: calc(1242 / 1512 * 100vw);
  top: calc(750 / 1512 * 100vw);
  width: calc(301 / 1512 * 100vw);
  height: calc(293 / 1512 * 100vw);
  border-radius: calc(100 / 1512 * 100vw) calc(100 / 1512 * 100vw) calc(20 / 1512 * 100vw) calc(20 / 1512 * 100vw);
}

@media (max-width: 991px) {
  .lf-outcome {
    min-height: auto;
    padding-bottom: 0px;
  }
  .lf-outcome__watermark {
    font-size: clamp(80px, 12vw, 160px);
    top: -20px;
    letter-spacing: 0.06em;
  }
  .lf-outcome__inner {
    padding: 40px 20px 40px;
  }
  .lf-outcome__label {
    font-size: clamp(14px, 2.5vw, 18px);
  }
  .lf-outcome__title {
    font-size: clamp(36px, 9vw, 72px);
    line-height: 1;
  }
  .lf-outcome__copy {
    margin-top: 32px;
    max-width: min(90vw, 520px);
    font-size: clamp(15px, 3.5vw, 18px);
  }
  .lf-outcome__photo {
    display: none;
  }
}
.lf-website {
  position: relative;
  background: #fff;
  color: #000;
  min-height: calc(982 / 1512 * 100vw);
  overflow: hidden;
  width: 100%;
}

.lf-website__watermark {
  position: absolute;
  left: 50%;
  top: calc(-75 / 1512 * 100vw);
  transform: translateX(-50%);
  margin: 0;
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: calc(343.106 / 1512 * 100vw);
  color: #f6f6f6;
  letter-spacing: calc(34.3106 / 1512 * 100vw);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.lf-website__inner {
  position: relative;
  z-index: 1;
  padding: calc(100 / 1512 * 100vw) calc(40 / 1512 * 100vw) calc(80 / 1512 * 100vw);
  text-align: center;
}

.lf-website__label {
  margin: 0;
  font-family: "Awaking";
  font-size: calc(40 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
}

.lf-website__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(15 / 1512 * 100vw);
  margin-top: calc(0 / 1512 * 100vw);
}

.lf-website__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(40 / 1512 * 100vw);
  padding: 0 calc(20 / 1512 * 100vw);
  border: calc(0.289 / 1512 * 100vw) solid rgba(240, 202, 156, 0.39);
  border-radius: calc(28 / 1512 * 100vw);
  background: rgba(218, 171, 133, 0.13);
  font-family: "Awaking";
  font-size: calc(13.51 / 1512 * 100vw);
  line-height: 1;
  color: #773500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, height 0.2s ease, font-size 0.2s ease;
}
.lf-website__tab--active, .lf-website__tab.is-active {
  height: calc(48 / 1512 * 100vw);
  padding: 0 calc(24 / 1512 * 100vw);
  border-width: calc(0.343 / 1512 * 100vw);
  background: rgba(218, 171, 133, 0.44);
  font-size: calc(16.029 / 1512 * 100vw);
}

.lf-website__showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(24 / 1512 * 100vw);
  margin-top: calc(53 / 1512 * 100vw);
}

.lf-website__nav {
  flex-shrink: 0;
  width: calc(86 / 1512 * 100vw);
  height: calc(86 / 1512 * 100vw);
  border: calc(0.849 / 1512 * 100vw) solid #c3bfbf;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.lf-website__nav img {
  display: block;
  width: calc(33 / 1512 * 100vw);
  height: calc(33 / 1512 * 100vw);
}
.lf-website__nav--prev img {
  transform: rotate(180deg);
}
.lf-website__nav:hover {
  border-color: #999;
  transform: scale(1.04);
}
.lf-website__nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.lf-website__swiper {
  width: calc(906 / 1512 * 100vw);
  height: calc(510 / 1512 * 100vw);
  border-radius: calc(70 / 1512 * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
.lf-website__swiper .swiper-slide {
  height: 100%;
}
.lf-website__swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center top;
}

.lf-website__copy {
  margin: calc(59 / 1512 * 100vw) auto 0;
  max-width: calc(592 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(20 / 1512 * 100vw);
  line-height: 1.622;
  color: #000;
  text-align: center;
}

@media (max-width: 991px) {
  .lf-website {
    min-height: auto;
  }
  .lf-website__watermark {
    font-size: clamp(80px, 12vw, 160px);
    top: -20px;
    letter-spacing: 0.06em;
  }
  .lf-website__inner {
    padding: 80px 20px 60px;
  }
  .lf-website__label {
    font-size: clamp(24px, 5vw, 36px);
  }
  .lf-website__tabs {
    gap: 8px;
    margin-top: 24px;
  }
  .lf-website__tab {
    height: 34px;
    padding: 0 14px;
    font-size: 11px;
    border-radius: 20px;
  }
  .lf-website__tab--active, .lf-website__tab.is-active {
    height: 40px;
    font-size: 12px;
  }
  .lf-website__showcase {
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 16px;
  }
  .lf-website__swiper {
    order: 1;
    width: 100%;
    max-width: min(92vw, 640px);
    height: auto;
    aspect-ratio: 903/505;
    border-radius: 32px;
  }
  .lf-website__swiper .swiper-slide {
    height: auto;
  }
  .lf-website__swiper img {
    aspect-ratio: 903/505;
    height: auto;
  }
  .lf-website__nav {
    order: 2;
    width: 56px;
    height: 56px;
  }
  .lf-website__nav img {
    width: 22px;
    height: 22px;
  }
  .lf-website__copy {
    margin-top: 28px;
    max-width: min(90vw, 520px);
    font-size: clamp(15px, 3.5vw, 18px);
  }
}
@media (min-width: 992px) {
  .lf-website__showcase .lf-website__nav--prev {
    order: 1;
  }
  .lf-website__showcase .lf-website__swiper {
    order: 2;
  }
  .lf-website__showcase .lf-website__nav--next {
    order: 3;
  }
}
.lf-evolution {
  position: relative;
  background: #000;
  color: #fff;
  min-height: calc(982 / 1512 * 100vw);
  overflow: hidden;
  width: 100%;
}

.lf-evolution__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lf-evolution__bg img {
  position: absolute;
  left: -0.68%;
  top: calc(-385 / 1512 * 100vw);
  width: 100.41%;
  height: calc(2277 / 1512 * 100vw);
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.2;
}

.lf-evolution__inner {
  position: relative;
  z-index: 1;
  min-height: calc(982 / 1512 * 100vw);
  padding: calc(136 / 1512 * 100vw) calc(40 / 1512 * 100vw) calc(80 / 1512 * 100vw);
}
@media (max-width: 430px) {
  .lf-evolution__inner {
    padding: 40px 20px 40px !important;
  }
}

.lf-evolution__title {
  font-family: "FK Screamer Trial", Anton, "Impact", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  position: relative;
  margin: 0 auto;
  max-width: calc(1200 / 1512 * 100vw);
  font-size: calc(143.811 / 1512 * 100vw);
  line-height: 0.839;
  color: #fafafa;
  text-align: center;
}
@media (max-width: 430px) {
  .lf-evolution__title {
    text-align: unset;
  }
}

.lf-evolution__title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: calc(40 / 1512 * 100vw);
}

.lf-evolution__title-word {
  display: inline-block;
  white-space: nowrap;
}

.lf-evolution__title-line {
  display: block;
  margin-top: calc(8 / 1512 * 100vw);
  white-space: nowrap;
}

.lf-evolution__logo {
  position: absolute;
  left: 50%;
  top: calc(382 / 1512 * 100vw);
  transform: translateX(-50%) rotate(180deg);
  width: calc(321 / 1512 * 100vw);
  height: calc(321 / 1512 * 100vw);
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .lf-evolution__logo {
    left: 56%;
  }
}
@media (max-width: 1200px) {
  .lf-evolution__logo {
    left: 61%;
  }
}
@media (max-width: 600px) {
  .lf-evolution__logo {
    left: 42% !important;
  }
}
@media (max-width: 430px) {
  .lf-evolution__logo {
    display: none !important;
  }
}

.lf-evolution__list {
  position: absolute;
  left: calc(80 / 1512 * 100vw);
  bottom: calc(120 / 1512 * 100vw);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: calc(391 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(34 / 1512 * 100vw);
  line-height: 1.68;
  color: #fafafa;
}
@media (max-width: 430px) {
  .lf-evolution__list {
    margin-top: 18px !important;
  }
}
.lf-evolution__list li + li {
  margin-top: calc(4 / 1512 * 100vw);
}

.lf-evolution__tagline {
  position: absolute;
  right: calc(80 / 1512 * 100vw);
  bottom: calc(120 / 1512 * 100vw);
  margin: 0;
  max-width: calc(500 / 1512 * 100vw);
  font-family: "Awaking";
  font-size: calc(34 / 1512 * 100vw);
  line-height: 1.622;
  color: #c88e64;
  text-align: right;
}

@media (max-width: 991px) {
  .lf-evolution__inner {
    min-height: auto;
    padding: 60px 20px 60px;
  }
  .lf-evolution__title {
    font-size: clamp(35px, 18vw, 72px);
    line-height: 1;
  }
  .lf-evolution__title-row {
    flex-direction: column;
    gap: 4px;
  }
  .lf-evolution__logo {
    position: relative;
    left: 27%;
    top: auto;
    transform: rotate(180deg);
    width: min(48vw, 200px);
    height: auto;
    margin: 24px auto 0;
    display: block;
  }
  .lf-evolution__list {
    position: static;
    max-width: none;
    margin-top: 48px;
    font-size: clamp(18px, 4vw, 26px);
    text-align: center;
  }
  .lf-evolution__tagline {
    position: static;
    max-width: none;
    margin-top: 32px;
    font-size: clamp(20px, 4.5vw, 28px);
    text-align: center;
  }
  .lf-evolution__bg img {
    top: -120px;
    height: 140vh;
  }
}

/*# sourceMappingURL=lforlife.css.map */
